.editorconfig
AUTHORS.rst
CHANGES.rst
CONTRIBUTING.rst
INSTALL.rst
LICENSE
MANIFEST.in
README.rst
babel.ini
pytest.ini
requirements-devel.txt
run-tests.sh
setup.cfg
setup.py
.github/workflows/pypi-publish.yml
.github/workflows/tests.yml
.tx/config
docs/Makefile
docs/api.rst
docs/authors.rst
docs/changes.rst
docs/conf.py
docs/configuration.rst
docs/contributing.rst
docs/index.rst
docs/installation.rst
docs/license.rst
docs/make.bat
docs/requirements.txt
docs/usage.rst
invenio_records_resources/__init__.py
invenio_records_resources/config.py
invenio_records_resources/errors.py
invenio_records_resources/ext.py
invenio_records_resources/pagination.py
invenio_records_resources/version.py
invenio_records_resources.egg-info/PKG-INFO
invenio_records_resources.egg-info/SOURCES.txt
invenio_records_resources.egg-info/dependency_links.txt
invenio_records_resources.egg-info/entry_points.txt
invenio_records_resources.egg-info/not-zip-safe
invenio_records_resources.egg-info/requires.txt
invenio_records_resources.egg-info/top_level.txt
invenio_records_resources/factories/__init__.py
invenio_records_resources/factories/factory.py
invenio_records_resources/factories/record_links_schema.py
invenio_records_resources/factories/record_search_link_schema.py
invenio_records_resources/records/__init__.py
invenio_records_resources/records/api.py
invenio_records_resources/records/models.py
invenio_records_resources/records/resolver.py
invenio_records_resources/records/systemfields/__init__.py
invenio_records_resources/records/systemfields/files.py
invenio_records_resources/records/systemfields/index.py
invenio_records_resources/records/systemfields/pid.py
invenio_records_resources/records/systemfields/pid_statuscheck.py
invenio_records_resources/records/systemfields/relations.py
invenio_records_resources/resources/__init__.py
invenio_records_resources/resources/errors.py
invenio_records_resources/resources/actions/__init__.py
invenio_records_resources/resources/actions/config.py
invenio_records_resources/resources/actions/errors.py
invenio_records_resources/resources/actions/resource.py
invenio_records_resources/resources/files/__init__.py
invenio_records_resources/resources/files/config.py
invenio_records_resources/resources/files/loaders.py
invenio_records_resources/resources/files/resource.py
invenio_records_resources/resources/files/response.py
invenio_records_resources/resources/files/schemas_links.py
invenio_records_resources/resources/records/__init__.py
invenio_records_resources/resources/records/config.py
invenio_records_resources/resources/records/errors.py
invenio_records_resources/resources/records/resource.py
invenio_records_resources/resources/records/response.py
invenio_records_resources/resources/records/schemas_header.py
invenio_records_resources/resources/records/schemas_links.py
invenio_records_resources/resources/records/schemas_url_args.py
invenio_records_resources/serializers/__init__.py
invenio_records_resources/serializers/xml.py
invenio_records_resources/services/__init__.py
invenio_records_resources/services/errors.py
invenio_records_resources/services/base/__init__.py
invenio_records_resources/services/base/config.py
invenio_records_resources/services/base/results.py
invenio_records_resources/services/base/service.py
invenio_records_resources/services/files/__init__.py
invenio_records_resources/services/files/config.py
invenio_records_resources/services/files/results.py
invenio_records_resources/services/files/schema.py
invenio_records_resources/services/files/service.py
invenio_records_resources/services/records/__init__.py
invenio_records_resources/services/records/components.py
invenio_records_resources/services/records/config.py
invenio_records_resources/services/records/results.py
invenio_records_resources/services/records/schema.py
invenio_records_resources/services/records/search.py
invenio_records_resources/services/records/service.py
invenio_records_resources/services/records/params/__init__.py
invenio_records_resources/services/records/params/base.py
invenio_records_resources/services/records/params/facets.py
invenio_records_resources/services/records/params/filter.py
invenio_records_resources/services/records/params/pagination.py
invenio_records_resources/services/records/params/querystr.py
invenio_records_resources/services/records/params/sort.py
invenio_records_resources/translations/en/LC_MESSAGES/messages.mo
invenio_records_resources/translations/en/LC_MESSAGES/messages.po
tests/conftest.py
tests/test_invenio_resources.py
tests/factories/__init__.py
tests/factories/conftest.py
tests/factories/test_factory.py
tests/factories/test_service.py
tests/mock_module/__init__.py
tests/mock_module/api.py
tests/mock_module/models.py
tests/mock_module/permissions.py
tests/mock_module/resource.py
tests/mock_module/schema.py
tests/mock_module/service.py
tests/mock_module/jsonschemas/__init__.py
tests/mock_module/jsonschemas/records/record-v1.0.0.json
tests/mock_module/mappings/__init__.py
tests/mock_module/mappings/v6/__init__.py
tests/mock_module/mappings/v6/records/record-v1.0.0.json
tests/mock_module/mappings/v7/__init__.py
tests/mock_module/mappings/v7/records/record-v1.0.0.json
tests/mock_module_factory/__init__.py
tests/mock_module_factory/jsonschemas/__init__.py
tests/mock_module_factory/jsonschemas/grants/grant-v1.0.0.json
tests/mock_module_factory/mappings/v6/__init__.py
tests/mock_module_factory/mappings/v6/grants/grant-v1.0.0.json
tests/mock_module_factory/mappings/v7/__init__.py
tests/mock_module_factory/mappings/v7/grants/grant-v1.0.0.json
tests/records/conftest.py
tests/records/test_api.py
tests/records/test_systemfield_files.py
tests/records/test_systemfield_index.py
tests/records/test_systemfield_pid.py
tests/records/test_systemfield_pidstatus.py
tests/resources/conftest.py
tests/resources/test_files_resource.py
tests/resources/test_permissions.py
tests/resources/test_record_resource.py
tests/resources/test_resource_configuration.py
tests/resources/test_resource_faceting.py
tests/resources/test_resource_links.py
tests/resources/test_resource_pagination.py
tests/resources/test_resource_preference.py
tests/resources/test_resource_sorting.py
tests/resources/test_resources.py
tests/resources/test_resources_etag.py
tests/resources/test_serialization_integration.py
tests/services/conftest.py
tests/services/test_links.py
tests/services/test_service.py
tests/services/test_service__create.py
tests/services/test_service_configuration.py
tests/services/test_service_facets.py
tests/services/test_service_pagination.py
tests/services/test_service_revision_id.py
tests/services/test_service_sort.py
tests/services/files/test_file_results.py
tests/services/files/test_file_service.py