@digital-science-dsl/dimensions-analytics-mcp 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +61 -0
- package/README.md +152 -0
- package/bin/dimensions-analytics-mcp-http.js +2 -0
- package/bin/dimensions-analytics-mcp.js +2 -0
- package/dist/client/auth/config-loaders.d.ts +22 -0
- package/dist/client/auth/config-loaders.d.ts.map +1 -0
- package/dist/client/auth/config-loaders.js +68 -0
- package/dist/client/auth/config-loaders.js.map +1 -0
- package/dist/client/auth/decorators/index.d.ts +7 -0
- package/dist/client/auth/decorators/index.d.ts.map +1 -0
- package/dist/client/auth/decorators/index.js +6 -0
- package/dist/client/auth/decorators/index.js.map +1 -0
- package/dist/client/auth/decorators/with-caching.d.ts +81 -0
- package/dist/client/auth/decorators/with-caching.d.ts.map +1 -0
- package/dist/client/auth/decorators/with-caching.js +168 -0
- package/dist/client/auth/decorators/with-caching.js.map +1 -0
- package/dist/client/auth/factory.d.ts +13 -0
- package/dist/client/auth/factory.d.ts.map +1 -0
- package/dist/client/auth/factory.js +29 -0
- package/dist/client/auth/factory.js.map +1 -0
- package/dist/client/auth/index.d.ts +7 -0
- package/dist/client/auth/index.d.ts.map +1 -0
- package/dist/client/auth/index.js +6 -0
- package/dist/client/auth/index.js.map +1 -0
- package/dist/client/auth/jwt-utils.d.ts +17 -0
- package/dist/client/auth/jwt-utils.d.ts.map +1 -0
- package/dist/client/auth/jwt-utils.js +33 -0
- package/dist/client/auth/jwt-utils.js.map +1 -0
- package/dist/client/auth/node.d.ts +16 -0
- package/dist/client/auth/node.d.ts.map +1 -0
- package/dist/client/auth/node.js +15 -0
- package/dist/client/auth/node.js.map +1 -0
- package/dist/client/auth/providers/index.d.ts +2 -0
- package/dist/client/auth/providers/index.d.ts.map +1 -0
- package/dist/client/auth/providers/index.js +2 -0
- package/dist/client/auth/providers/index.js.map +1 -0
- package/dist/client/auth/providers/jwt-auth-provider.d.ts +70 -0
- package/dist/client/auth/providers/jwt-auth-provider.d.ts.map +1 -0
- package/dist/client/auth/providers/jwt-auth-provider.js +134 -0
- package/dist/client/auth/providers/jwt-auth-provider.js.map +1 -0
- package/dist/client/auth/schemas.d.ts +19 -0
- package/dist/client/auth/schemas.d.ts.map +1 -0
- package/dist/client/auth/schemas.js +23 -0
- package/dist/client/auth/schemas.js.map +1 -0
- package/dist/client/auth/types.d.ts +25 -0
- package/dist/client/auth/types.d.ts.map +1 -0
- package/dist/client/auth/types.js +9 -0
- package/dist/client/auth/types.js.map +1 -0
- package/dist/client/command.d.ts +44 -0
- package/dist/client/command.d.ts.map +1 -0
- package/dist/client/command.js +23 -0
- package/dist/client/command.js.map +1 -0
- package/dist/client/config/index.d.ts +11 -0
- package/dist/client/config/index.d.ts.map +1 -0
- package/dist/client/config/index.js +8 -0
- package/dist/client/config/index.js.map +1 -0
- package/dist/client/config/loader.d.ts +27 -0
- package/dist/client/config/loader.d.ts.map +1 -0
- package/dist/client/config/loader.js +128 -0
- package/dist/client/config/loader.js.map +1 -0
- package/dist/client/config/node.d.ts +18 -0
- package/dist/client/config/node.d.ts.map +1 -0
- package/dist/client/config/node.js +17 -0
- package/dist/client/config/node.js.map +1 -0
- package/dist/client/config/schemas.d.ts +23 -0
- package/dist/client/config/schemas.d.ts.map +1 -0
- package/dist/client/config/schemas.js +24 -0
- package/dist/client/config/schemas.js.map +1 -0
- package/dist/client/config/types.d.ts +37 -0
- package/dist/client/config/types.d.ts.map +1 -0
- package/dist/client/config/types.js +6 -0
- package/dist/client/config/types.js.map +1 -0
- package/dist/client/config/unified-loader.d.ts +41 -0
- package/dist/client/config/unified-loader.d.ts.map +1 -0
- package/dist/client/config/unified-loader.js +86 -0
- package/dist/client/config/unified-loader.js.map +1 -0
- package/dist/client/config.d.ts +43 -0
- package/dist/client/config.d.ts.map +1 -0
- package/dist/client/config.js +56 -0
- package/dist/client/config.js.map +1 -0
- package/dist/client/deployment-config.d.ts +36 -0
- package/dist/client/deployment-config.d.ts.map +1 -0
- package/dist/client/deployment-config.js +79 -0
- package/dist/client/deployment-config.js.map +1 -0
- package/dist/client/errors.d.ts +180 -0
- package/dist/client/errors.d.ts.map +1 -0
- package/dist/client/errors.js +253 -0
- package/dist/client/errors.js.map +1 -0
- package/dist/client/http-client.d.ts +215 -0
- package/dist/client/http-client.d.ts.map +1 -0
- package/dist/client/http-client.js +419 -0
- package/dist/client/http-client.js.map +1 -0
- package/dist/client/index.d.ts +28 -0
- package/dist/client/index.d.ts.map +1 -0
- package/dist/client/index.js +18 -0
- package/dist/client/index.js.map +1 -0
- package/dist/client/internal-dsl-client.d.ts +30 -0
- package/dist/client/internal-dsl-client.d.ts.map +1 -0
- package/dist/client/internal-dsl-client.js +101 -0
- package/dist/client/internal-dsl-client.js.map +1 -0
- package/dist/client/rate-limiter.d.ts +79 -0
- package/dist/client/rate-limiter.d.ts.map +1 -0
- package/dist/client/rate-limiter.js +118 -0
- package/dist/client/rate-limiter.js.map +1 -0
- package/dist/client/resolve-api-key-user.d.ts +24 -0
- package/dist/client/resolve-api-key-user.d.ts.map +1 -0
- package/dist/client/resolve-api-key-user.js +80 -0
- package/dist/client/resolve-api-key-user.js.map +1 -0
- package/dist/client/types.d.ts +44 -0
- package/dist/client/types.d.ts.map +1 -0
- package/dist/client/types.js +10 -0
- package/dist/client/types.js.map +1 -0
- package/dist/dsl/client.d.ts +330 -0
- package/dist/dsl/client.d.ts.map +1 -0
- package/dist/dsl/client.js +433 -0
- package/dist/dsl/client.js.map +1 -0
- package/dist/dsl/commands/apply-filters.d.ts +15 -0
- package/dist/dsl/commands/apply-filters.d.ts.map +1 -0
- package/dist/dsl/commands/apply-filters.js +29 -0
- package/dist/dsl/commands/apply-filters.js.map +1 -0
- package/dist/dsl/commands/facet/index.d.ts +6 -0
- package/dist/dsl/commands/facet/index.d.ts.map +1 -0
- package/dist/dsl/commands/facet/index.js +6 -0
- package/dist/dsl/commands/facet/index.js.map +1 -0
- package/dist/dsl/commands/facet/schemas.d.ts +71 -0
- package/dist/dsl/commands/facet/schemas.d.ts.map +1 -0
- package/dist/dsl/commands/facet/schemas.js +84 -0
- package/dist/dsl/commands/facet/schemas.js.map +1 -0
- package/dist/dsl/commands/functions/ClassifyCommand.d.ts +96 -0
- package/dist/dsl/commands/functions/ClassifyCommand.d.ts.map +1 -0
- package/dist/dsl/commands/functions/ClassifyCommand.js +95 -0
- package/dist/dsl/commands/functions/ClassifyCommand.js.map +1 -0
- package/dist/dsl/commands/functions/ExtractAffiliationsCommand.d.ts +86 -0
- package/dist/dsl/commands/functions/ExtractAffiliationsCommand.d.ts.map +1 -0
- package/dist/dsl/commands/functions/ExtractAffiliationsCommand.js +131 -0
- package/dist/dsl/commands/functions/ExtractAffiliationsCommand.js.map +1 -0
- package/dist/dsl/commands/functions/ExtractConceptsCommand.d.ts +73 -0
- package/dist/dsl/commands/functions/ExtractConceptsCommand.d.ts.map +1 -0
- package/dist/dsl/commands/functions/ExtractConceptsCommand.js +110 -0
- package/dist/dsl/commands/functions/ExtractConceptsCommand.js.map +1 -0
- package/dist/dsl/commands/functions/ExtractGrantsCommand.d.ts +66 -0
- package/dist/dsl/commands/functions/ExtractGrantsCommand.d.ts.map +1 -0
- package/dist/dsl/commands/functions/ExtractGrantsCommand.js +87 -0
- package/dist/dsl/commands/functions/ExtractGrantsCommand.js.map +1 -0
- package/dist/dsl/commands/functions/index.d.ts +10 -0
- package/dist/dsl/commands/functions/index.d.ts.map +1 -0
- package/dist/dsl/commands/functions/index.js +10 -0
- package/dist/dsl/commands/functions/index.js.map +1 -0
- package/dist/dsl/commands/index.d.ts +8 -0
- package/dist/dsl/commands/index.d.ts.map +1 -0
- package/dist/dsl/commands/index.js +7 -0
- package/dist/dsl/commands/index.js.map +1 -0
- package/dist/dsl/commands/validate-input.d.ts +18 -0
- package/dist/dsl/commands/validate-input.d.ts.map +1 -0
- package/dist/dsl/commands/validate-input.js +27 -0
- package/dist/dsl/commands/validate-input.js.map +1 -0
- package/dist/dsl/create-client.d.ts +32 -0
- package/dist/dsl/create-client.d.ts.map +1 -0
- package/dist/dsl/create-client.js +58 -0
- package/dist/dsl/create-client.js.map +1 -0
- package/dist/dsl/fluent-query-builder.d.ts +439 -0
- package/dist/dsl/fluent-query-builder.d.ts.map +1 -0
- package/dist/dsl/fluent-query-builder.js +534 -0
- package/dist/dsl/fluent-query-builder.js.map +1 -0
- package/dist/dsl/index.d.ts +32 -0
- package/dist/dsl/index.d.ts.map +1 -0
- package/dist/dsl/index.js +31 -0
- package/dist/dsl/index.js.map +1 -0
- package/dist/dsl/pagination.d.ts +82 -0
- package/dist/dsl/pagination.d.ts.map +1 -0
- package/dist/dsl/pagination.js +135 -0
- package/dist/dsl/pagination.js.map +1 -0
- package/dist/dsl/query-builder.d.ts +456 -0
- package/dist/dsl/query-builder.d.ts.map +1 -0
- package/dist/dsl/query-builder.js +994 -0
- package/dist/dsl/query-builder.js.map +1 -0
- package/dist/dsl/response-parser.d.ts +111 -0
- package/dist/dsl/response-parser.d.ts.map +1 -0
- package/dist/dsl/response-parser.js +210 -0
- package/dist/dsl/response-parser.js.map +1 -0
- package/dist/dsl/schema/cache.d.ts +52 -0
- package/dist/dsl/schema/cache.d.ts.map +1 -0
- package/dist/dsl/schema/cache.js +97 -0
- package/dist/dsl/schema/cache.js.map +1 -0
- package/dist/dsl/schema/extract.d.ts +18 -0
- package/dist/dsl/schema/extract.d.ts.map +1 -0
- package/dist/dsl/schema/extract.js +41 -0
- package/dist/dsl/schema/extract.js.map +1 -0
- package/dist/dsl/schema/index.d.ts +13 -0
- package/dist/dsl/schema/index.d.ts.map +1 -0
- package/dist/dsl/schema/index.js +12 -0
- package/dist/dsl/schema/index.js.map +1 -0
- package/dist/dsl/schema/load.d.ts +41 -0
- package/dist/dsl/schema/load.d.ts.map +1 -0
- package/dist/dsl/schema/load.js +119 -0
- package/dist/dsl/schema/load.js.map +1 -0
- package/dist/dsl/schema/store.d.ts +137 -0
- package/dist/dsl/schema/store.d.ts.map +1 -0
- package/dist/dsl/schema/store.js +204 -0
- package/dist/dsl/schema/store.js.map +1 -0
- package/dist/dsl/schema/structured-entities.d.ts +21 -0
- package/dist/dsl/schema/structured-entities.d.ts.map +1 -0
- package/dist/dsl/schema/structured-entities.js +39 -0
- package/dist/dsl/schema/structured-entities.js.map +1 -0
- package/dist/dsl/schema/summary.d.ts +51 -0
- package/dist/dsl/schema/summary.d.ts.map +1 -0
- package/dist/dsl/schema/summary.js +61 -0
- package/dist/dsl/schema/summary.js.map +1 -0
- package/dist/dsl/schema/types.d.ts +36 -0
- package/dist/dsl/schema/types.d.ts.map +1 -0
- package/dist/dsl/schema/types.js +6 -0
- package/dist/dsl/schema/types.js.map +1 -0
- package/dist/dsl/schema/validation.d.ts +21 -0
- package/dist/dsl/schema/validation.d.ts.map +1 -0
- package/dist/dsl/schema/validation.js +44 -0
- package/dist/dsl/schema/validation.js.map +1 -0
- package/dist/dsl/types/buckets.d.ts +18 -0
- package/dist/dsl/types/buckets.d.ts.map +1 -0
- package/dist/dsl/types/buckets.js +6 -0
- package/dist/dsl/types/buckets.js.map +1 -0
- package/dist/dsl/types/common.d.ts +91 -0
- package/dist/dsl/types/common.d.ts.map +1 -0
- package/dist/dsl/types/common.js +6 -0
- package/dist/dsl/types/common.js.map +1 -0
- package/dist/dsl/types/entities.d.ts +35 -0
- package/dist/dsl/types/entities.d.ts.map +1 -0
- package/dist/dsl/types/entities.js +11 -0
- package/dist/dsl/types/entities.js.map +1 -0
- package/dist/dsl/types/index.d.ts +12 -0
- package/dist/dsl/types/index.d.ts.map +1 -0
- package/dist/dsl/types/index.js +7 -0
- package/dist/dsl/types/index.js.map +1 -0
- package/dist/dsl/types/return-clauses.d.ts +107 -0
- package/dist/dsl/types/return-clauses.d.ts.map +1 -0
- package/dist/dsl/types/return-clauses.js +22 -0
- package/dist/dsl/types/return-clauses.js.map +1 -0
- package/dist/dsl/types/special-functions.d.ts +175 -0
- package/dist/dsl/types/special-functions.d.ts.map +1 -0
- package/dist/dsl/types/special-functions.js +25 -0
- package/dist/dsl/types/special-functions.js.map +1 -0
- package/dist/dsl/types/vocabulary.d.ts +21 -0
- package/dist/dsl/types/vocabulary.d.ts.map +1 -0
- package/dist/dsl/types/vocabulary.js +44 -0
- package/dist/dsl/types/vocabulary.js.map +1 -0
- package/dist/dsl/usage-policy.d.ts +87 -0
- package/dist/dsl/usage-policy.d.ts.map +1 -0
- package/dist/dsl/usage-policy.js +133 -0
- package/dist/dsl/usage-policy.js.map +1 -0
- package/dist/dsl/utils/escape.d.ts +24 -0
- package/dist/dsl/utils/escape.d.ts.map +1 -0
- package/dist/dsl/utils/escape.js +124 -0
- package/dist/dsl/utils/escape.js.map +1 -0
- package/dist/dsl/utils/sanitize.d.ts +13 -0
- package/dist/dsl/utils/sanitize.d.ts.map +1 -0
- package/dist/dsl/utils/sanitize.js +19 -0
- package/dist/dsl/utils/sanitize.js.map +1 -0
- package/dist/dsl/utils/string-utils.d.ts +35 -0
- package/dist/dsl/utils/string-utils.d.ts.map +1 -0
- package/dist/dsl/utils/string-utils.js +145 -0
- package/dist/dsl/utils/string-utils.js.map +1 -0
- package/dist/dsl/utils/validate-field-name.d.ts +11 -0
- package/dist/dsl/utils/validate-field-name.d.ts.map +1 -0
- package/dist/dsl/utils/validate-field-name.js +18 -0
- package/dist/dsl/utils/validate-field-name.js.map +1 -0
- package/dist/examples/dsl-examples.d.ts +11 -0
- package/dist/examples/dsl-examples.d.ts.map +1 -0
- package/dist/examples/dsl-examples.js +49 -0
- package/dist/examples/dsl-examples.js.map +1 -0
- package/dist/examples/usage-scenarios.d.ts +22 -0
- package/dist/examples/usage-scenarios.d.ts.map +1 -0
- package/dist/examples/usage-scenarios.js +173 -0
- package/dist/examples/usage-scenarios.js.map +1 -0
- package/dist/funder-org-names.d.ts +12 -0
- package/dist/funder-org-names.d.ts.map +1 -0
- package/dist/funder-org-names.js +30 -0
- package/dist/funder-org-names.js.map +1 -0
- package/dist/http-main.d.ts +7 -0
- package/dist/http-main.d.ts.map +1 -0
- package/dist/http-main.js +36 -0
- package/dist/http-main.js.map +1 -0
- package/dist/http.d.ts +29 -0
- package/dist/http.d.ts.map +1 -0
- package/dist/http.js +173 -0
- package/dist/http.js.map +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -0
- package/dist/kwq/build-query.d.ts +26 -0
- package/dist/kwq/build-query.d.ts.map +1 -0
- package/dist/kwq/build-query.js +37 -0
- package/dist/kwq/build-query.js.map +1 -0
- package/dist/kwq/concept-groups.d.ts +49 -0
- package/dist/kwq/concept-groups.d.ts.map +1 -0
- package/dist/kwq/concept-groups.js +55 -0
- package/dist/kwq/concept-groups.js.map +1 -0
- package/dist/kwq/dsl-assembler.d.ts +28 -0
- package/dist/kwq/dsl-assembler.d.ts.map +1 -0
- package/dist/kwq/dsl-assembler.js +124 -0
- package/dist/kwq/dsl-assembler.js.map +1 -0
- package/dist/kwq/ensemble.d.ts +38 -0
- package/dist/kwq/ensemble.d.ts.map +1 -0
- package/dist/kwq/ensemble.js +107 -0
- package/dist/kwq/ensemble.js.map +1 -0
- package/dist/kwq/index.d.ts +16 -0
- package/dist/kwq/index.d.ts.map +1 -0
- package/dist/kwq/index.js +14 -0
- package/dist/kwq/index.js.map +1 -0
- package/dist/kwq/types.d.ts +120 -0
- package/dist/kwq/types.d.ts.map +1 -0
- package/dist/kwq/types.js +11 -0
- package/dist/kwq/types.js.map +1 -0
- package/dist/lambda.d.ts +10 -0
- package/dist/lambda.d.ts.map +1 -0
- package/dist/lambda.js +4 -0
- package/dist/lambda.js.map +1 -0
- package/dist/main.d.ts +8 -0
- package/dist/main.d.ts.map +1 -0
- package/dist/main.js +33 -0
- package/dist/main.js.map +1 -0
- package/dist/mcp/batch-fetch.d.ts +89 -0
- package/dist/mcp/batch-fetch.d.ts.map +1 -0
- package/dist/mcp/batch-fetch.js +178 -0
- package/dist/mcp/batch-fetch.js.map +1 -0
- package/dist/mcp/examples/dsl-examples.d.ts +21 -0
- package/dist/mcp/examples/dsl-examples.d.ts.map +1 -0
- package/dist/mcp/examples/dsl-examples.js +61 -0
- package/dist/mcp/examples/dsl-examples.js.map +1 -0
- package/dist/mcp/examples/usage-scenarios.d.ts +20 -0
- package/dist/mcp/examples/usage-scenarios.d.ts.map +1 -0
- package/dist/mcp/examples/usage-scenarios.js +169 -0
- package/dist/mcp/examples/usage-scenarios.js.map +1 -0
- package/dist/mcp/export-format.d.ts +43 -0
- package/dist/mcp/export-format.d.ts.map +1 -0
- package/dist/mcp/export-format.js +92 -0
- package/dist/mcp/export-format.js.map +1 -0
- package/dist/mcp/funder-org-names.d.ts +12 -0
- package/dist/mcp/funder-org-names.d.ts.map +1 -0
- package/dist/mcp/funder-org-names.js +30 -0
- package/dist/mcp/funder-org-names.js.map +1 -0
- package/dist/mcp/http-server.d.ts +20 -0
- package/dist/mcp/http-server.d.ts.map +1 -0
- package/dist/mcp/http-server.js +118 -0
- package/dist/mcp/http-server.js.map +1 -0
- package/dist/mcp/middleware/field-aliases.d.ts +97 -0
- package/dist/mcp/middleware/field-aliases.d.ts.map +1 -0
- package/dist/mcp/middleware/field-aliases.js +208 -0
- package/dist/mcp/middleware/field-aliases.js.map +1 -0
- package/dist/mcp/resources/schema.d.ts +13 -0
- package/dist/mcp/resources/schema.d.ts.map +1 -0
- package/dist/mcp/resources/schema.js +262 -0
- package/dist/mcp/resources/schema.js.map +1 -0
- package/dist/mcp/schema/context.d.ts +10 -0
- package/dist/mcp/schema/context.d.ts.map +1 -0
- package/dist/mcp/schema/context.js +6 -0
- package/dist/mcp/schema/context.js.map +1 -0
- package/dist/mcp/schema/index.d.ts +8 -0
- package/dist/mcp/schema/index.d.ts.map +1 -0
- package/dist/mcp/schema/index.js +6 -0
- package/dist/mcp/schema/index.js.map +1 -0
- package/dist/mcp/server.d.ts +56 -0
- package/dist/mcp/server.d.ts.map +1 -0
- package/dist/mcp/server.js +168 -0
- package/dist/mcp/server.js.map +1 -0
- package/dist/mcp/shared-schema.d.ts +13 -0
- package/dist/mcp/shared-schema.d.ts.map +1 -0
- package/dist/mcp/shared-schema.js +28 -0
- package/dist/mcp/shared-schema.js.map +1 -0
- package/dist/mcp/tools/analytics-filters.d.ts +18 -0
- package/dist/mcp/tools/analytics-filters.d.ts.map +1 -0
- package/dist/mcp/tools/analytics-filters.js +35 -0
- package/dist/mcp/tools/analytics-filters.js.map +1 -0
- package/dist/mcp/tools/analytics.d.ts +16 -0
- package/dist/mcp/tools/analytics.d.ts.map +1 -0
- package/dist/mcp/tools/analytics.js +381 -0
- package/dist/mcp/tools/analytics.js.map +1 -0
- package/dist/mcp/tools/concept-profile.d.ts +14 -0
- package/dist/mcp/tools/concept-profile.d.ts.map +1 -0
- package/dist/mcp/tools/concept-profile.js +130 -0
- package/dist/mcp/tools/concept-profile.js.map +1 -0
- package/dist/mcp/tools/dataset-profile.d.ts +15 -0
- package/dist/mcp/tools/dataset-profile.d.ts.map +1 -0
- package/dist/mcp/tools/dataset-profile.js +194 -0
- package/dist/mcp/tools/dataset-profile.js.map +1 -0
- package/dist/mcp/tools/fetch-search-pages.d.ts +15 -0
- package/dist/mcp/tools/fetch-search-pages.d.ts.map +1 -0
- package/dist/mcp/tools/fetch-search-pages.js +237 -0
- package/dist/mcp/tools/fetch-search-pages.js.map +1 -0
- package/dist/mcp/tools/functions.d.ts +14 -0
- package/dist/mcp/tools/functions.d.ts.map +1 -0
- package/dist/mcp/tools/functions.js +87 -0
- package/dist/mcp/tools/functions.js.map +1 -0
- package/dist/mcp/tools/impact-chain.d.ts +15 -0
- package/dist/mcp/tools/impact-chain.d.ts.map +1 -0
- package/dist/mcp/tools/impact-chain.js +96 -0
- package/dist/mcp/tools/impact-chain.js.map +1 -0
- package/dist/mcp/tools/kwq.d.ts +19 -0
- package/dist/mcp/tools/kwq.d.ts.map +1 -0
- package/dist/mcp/tools/kwq.js +156 -0
- package/dist/mcp/tools/kwq.js.map +1 -0
- package/dist/mcp/tools/lookup.d.ts +14 -0
- package/dist/mcp/tools/lookup.d.ts.map +1 -0
- package/dist/mcp/tools/lookup.js +146 -0
- package/dist/mcp/tools/lookup.js.map +1 -0
- package/dist/mcp/tools/policy-profile.d.ts +15 -0
- package/dist/mcp/tools/policy-profile.d.ts.map +1 -0
- package/dist/mcp/tools/policy-profile.js +174 -0
- package/dist/mcp/tools/policy-profile.js.map +1 -0
- package/dist/mcp/tools/profile.d.ts +14 -0
- package/dist/mcp/tools/profile.d.ts.map +1 -0
- package/dist/mcp/tools/profile.js +349 -0
- package/dist/mcp/tools/profile.js.map +1 -0
- package/dist/mcp/tools/query.d.ts +16 -0
- package/dist/mcp/tools/query.d.ts.map +1 -0
- package/dist/mcp/tools/query.js +75 -0
- package/dist/mcp/tools/query.js.map +1 -0
- package/dist/mcp/tools/schema.d.ts +23 -0
- package/dist/mcp/tools/schema.d.ts.map +1 -0
- package/dist/mcp/tools/schema.js +124 -0
- package/dist/mcp/tools/schema.js.map +1 -0
- package/dist/mcp/tools/search-entity-metadata.d.ts +18 -0
- package/dist/mcp/tools/search-entity-metadata.d.ts.map +1 -0
- package/dist/mcp/tools/search-entity-metadata.js +221 -0
- package/dist/mcp/tools/search-entity-metadata.js.map +1 -0
- package/dist/mcp/tools/search-input.d.ts +58 -0
- package/dist/mcp/tools/search-input.d.ts.map +1 -0
- package/dist/mcp/tools/search-input.js +76 -0
- package/dist/mcp/tools/search-input.js.map +1 -0
- package/dist/mcp/tools/search.d.ts +24 -0
- package/dist/mcp/tools/search.d.ts.map +1 -0
- package/dist/mcp/tools/search.js +115 -0
- package/dist/mcp/tools/search.js.map +1 -0
- package/dist/mcp/utils.d.ts +82 -0
- package/dist/mcp/utils.d.ts.map +1 -0
- package/dist/mcp/utils.js +126 -0
- package/dist/mcp/utils.js.map +1 -0
- package/dist/middleware/field-aliases.d.ts +97 -0
- package/dist/middleware/field-aliases.d.ts.map +1 -0
- package/dist/middleware/field-aliases.js +208 -0
- package/dist/middleware/field-aliases.js.map +1 -0
- package/dist/resources/schema.d.ts +13 -0
- package/dist/resources/schema.d.ts.map +1 -0
- package/dist/resources/schema.js +204 -0
- package/dist/resources/schema.js.map +1 -0
- package/dist/schema/context.d.ts +10 -0
- package/dist/schema/context.d.ts.map +1 -0
- package/dist/schema/context.js +6 -0
- package/dist/schema/context.js.map +1 -0
- package/dist/schema/index.d.ts +9 -0
- package/dist/schema/index.d.ts.map +1 -0
- package/dist/schema/index.js +6 -0
- package/dist/schema/index.js.map +1 -0
- package/dist/schema/load.d.ts +43 -0
- package/dist/schema/load.d.ts.map +1 -0
- package/dist/schema/load.js +139 -0
- package/dist/schema/load.js.map +1 -0
- package/dist/schema/store.d.ts +112 -0
- package/dist/schema/store.d.ts.map +1 -0
- package/dist/schema/store.js +173 -0
- package/dist/schema/store.js.map +1 -0
- package/dist/schema/structured-entities.d.ts +21 -0
- package/dist/schema/structured-entities.d.ts.map +1 -0
- package/dist/schema/structured-entities.js +39 -0
- package/dist/schema/structured-entities.js.map +1 -0
- package/dist/schema/types.d.ts +36 -0
- package/dist/schema/types.d.ts.map +1 -0
- package/dist/schema/types.js +6 -0
- package/dist/schema/types.js.map +1 -0
- package/dist/server.d.ts +57 -0
- package/dist/server.d.ts.map +1 -0
- package/dist/server.js +144 -0
- package/dist/server.js.map +1 -0
- package/dist/telemetry.d.ts +172 -0
- package/dist/telemetry.d.ts.map +1 -0
- package/dist/telemetry.js +233 -0
- package/dist/telemetry.js.map +1 -0
- package/dist/tools/analytics-filters.d.ts +18 -0
- package/dist/tools/analytics-filters.d.ts.map +1 -0
- package/dist/tools/analytics-filters.js +35 -0
- package/dist/tools/analytics-filters.js.map +1 -0
- package/dist/tools/analytics.d.ts +16 -0
- package/dist/tools/analytics.d.ts.map +1 -0
- package/dist/tools/analytics.js +381 -0
- package/dist/tools/analytics.js.map +1 -0
- package/dist/tools/concept-profile.d.ts +14 -0
- package/dist/tools/concept-profile.d.ts.map +1 -0
- package/dist/tools/concept-profile.js +130 -0
- package/dist/tools/concept-profile.js.map +1 -0
- package/dist/tools/dataset-profile.d.ts +15 -0
- package/dist/tools/dataset-profile.d.ts.map +1 -0
- package/dist/tools/dataset-profile.js +194 -0
- package/dist/tools/dataset-profile.js.map +1 -0
- package/dist/tools/functions.d.ts +14 -0
- package/dist/tools/functions.d.ts.map +1 -0
- package/dist/tools/functions.js +294 -0
- package/dist/tools/functions.js.map +1 -0
- package/dist/tools/impact-chain.d.ts +15 -0
- package/dist/tools/impact-chain.d.ts.map +1 -0
- package/dist/tools/impact-chain.js +96 -0
- package/dist/tools/impact-chain.js.map +1 -0
- package/dist/tools/kwq.d.ts +19 -0
- package/dist/tools/kwq.d.ts.map +1 -0
- package/dist/tools/kwq.js +156 -0
- package/dist/tools/kwq.js.map +1 -0
- package/dist/tools/lookup.d.ts +14 -0
- package/dist/tools/lookup.d.ts.map +1 -0
- package/dist/tools/lookup.js +213 -0
- package/dist/tools/lookup.js.map +1 -0
- package/dist/tools/policy-profile.d.ts +15 -0
- package/dist/tools/policy-profile.d.ts.map +1 -0
- package/dist/tools/policy-profile.js +174 -0
- package/dist/tools/policy-profile.js.map +1 -0
- package/dist/tools/profile.d.ts +14 -0
- package/dist/tools/profile.d.ts.map +1 -0
- package/dist/tools/profile.js +349 -0
- package/dist/tools/profile.js.map +1 -0
- package/dist/tools/query.d.ts +16 -0
- package/dist/tools/query.d.ts.map +1 -0
- package/dist/tools/query.js +53 -0
- package/dist/tools/query.js.map +1 -0
- package/dist/tools/schema.d.ts +23 -0
- package/dist/tools/schema.d.ts.map +1 -0
- package/dist/tools/schema.js +124 -0
- package/dist/tools/schema.js.map +1 -0
- package/dist/tools/search-entity-metadata.d.ts +18 -0
- package/dist/tools/search-entity-metadata.d.ts.map +1 -0
- package/dist/tools/search-entity-metadata.js +221 -0
- package/dist/tools/search-entity-metadata.js.map +1 -0
- package/dist/tools/search.d.ts +23 -0
- package/dist/tools/search.d.ts.map +1 -0
- package/dist/tools/search.js +110 -0
- package/dist/tools/search.js.map +1 -0
- package/dist/tools/solr-fields.d.ts +39 -0
- package/dist/tools/solr-fields.d.ts.map +1 -0
- package/dist/tools/solr-fields.js +40 -0
- package/dist/tools/solr-fields.js.map +1 -0
- package/dist/utils.d.ts +70 -0
- package/dist/utils.d.ts.map +1 -0
- package/dist/utils.js +104 -0
- package/dist/utils.js.map +1 -0
- package/package.json +41 -0
- package/src/client/auth/config-loaders.ts +81 -0
- package/src/client/auth/decorators/index.ts +7 -0
- package/src/client/auth/decorators/with-caching.ts +237 -0
- package/src/client/auth/factory.ts +34 -0
- package/src/client/auth/index.ts +6 -0
- package/src/client/auth/jwt-utils.ts +36 -0
- package/src/client/auth/node.ts +16 -0
- package/src/client/auth/providers/index.ts +1 -0
- package/src/client/auth/providers/jwt-auth-provider.ts +153 -0
- package/src/client/auth/schemas.ts +25 -0
- package/src/client/auth/types.ts +30 -0
- package/src/client/command.ts +54 -0
- package/src/client/config/index.ts +15 -0
- package/src/client/config/loader.ts +155 -0
- package/src/client/config/node.ts +22 -0
- package/src/client/config/schemas.ts +28 -0
- package/src/client/config/types.ts +39 -0
- package/src/client/config/unified-loader.ts +118 -0
- package/src/client/config.ts +69 -0
- package/src/client/deployment-config.ts +98 -0
- package/src/client/errors.ts +295 -0
- package/src/client/http-client.ts +577 -0
- package/src/client/index.ts +68 -0
- package/src/client/internal-dsl-client.ts +128 -0
- package/src/client/rate-limiter.ts +139 -0
- package/src/client/resolve-api-key-user.ts +99 -0
- package/src/client/types.ts +44 -0
- package/src/dsl/client.ts +538 -0
- package/src/dsl/commands/apply-filters.ts +35 -0
- package/src/dsl/commands/facet/index.ts +12 -0
- package/src/dsl/commands/facet/schemas.ts +101 -0
- package/src/dsl/commands/functions/ClassifyCommand.ts +129 -0
- package/src/dsl/commands/functions/ExtractAffiliationsCommand.ts +163 -0
- package/src/dsl/commands/functions/ExtractConceptsCommand.ts +141 -0
- package/src/dsl/commands/functions/ExtractGrantsCommand.ts +112 -0
- package/src/dsl/commands/functions/index.ts +31 -0
- package/src/dsl/commands/index.ts +29 -0
- package/src/dsl/commands/validate-input.ts +29 -0
- package/src/dsl/create-client.ts +80 -0
- package/src/dsl/fluent-query-builder.ts +684 -0
- package/src/dsl/index.ts +206 -0
- package/src/dsl/pagination.ts +202 -0
- package/src/dsl/query-builder.ts +1120 -0
- package/src/dsl/response-parser.ts +299 -0
- package/src/dsl/schema/cache.ts +124 -0
- package/src/dsl/schema/extract.ts +44 -0
- package/src/dsl/schema/index.ts +50 -0
- package/src/dsl/schema/load.ts +160 -0
- package/src/dsl/schema/store.ts +253 -0
- package/src/dsl/schema/structured-entities.ts +44 -0
- package/src/dsl/schema/summary.ts +94 -0
- package/src/dsl/schema/types.ts +40 -0
- package/src/dsl/schema/validation.ts +56 -0
- package/src/dsl/types/buckets.ts +22 -0
- package/src/dsl/types/common.ts +99 -0
- package/src/dsl/types/entities.ts +43 -0
- package/src/dsl/types/index.ts +63 -0
- package/src/dsl/types/return-clauses.ts +147 -0
- package/src/dsl/types/special-functions.ts +220 -0
- package/src/dsl/types/vocabulary.ts +82 -0
- package/src/dsl/usage-policy.ts +219 -0
- package/src/dsl/utils/escape.ts +123 -0
- package/src/dsl/utils/sanitize.ts +21 -0
- package/src/dsl/utils/string-utils.ts +147 -0
- package/src/dsl/utils/validate-field-name.ts +19 -0
- package/src/http-main.ts +41 -0
- package/src/index.ts +14 -0
- package/src/main.ts +40 -0
- package/src/mcp/batch-fetch.ts +255 -0
- package/src/mcp/examples/dsl-examples.ts +66 -0
- package/src/mcp/examples/usage-scenarios.ts +185 -0
- package/src/mcp/export-format.ts +113 -0
- package/src/mcp/funder-org-names.ts +30 -0
- package/src/mcp/http-server.ts +148 -0
- package/src/mcp/middleware/field-aliases.ts +274 -0
- package/src/mcp/resources/schema.ts +364 -0
- package/src/mcp/schema/context.ts +11 -0
- package/src/mcp/schema/index.ts +38 -0
- package/src/mcp/server.ts +247 -0
- package/src/mcp/shared-schema.ts +34 -0
- package/src/mcp/tools/analytics-filters.ts +46 -0
- package/src/mcp/tools/analytics.ts +453 -0
- package/src/mcp/tools/fetch-search-pages.ts +329 -0
- package/src/mcp/tools/functions.ts +105 -0
- package/src/mcp/tools/lookup.ts +182 -0
- package/src/mcp/tools/query.ts +91 -0
- package/src/mcp/tools/schema.ts +147 -0
- package/src/mcp/tools/search-entity-metadata.ts +253 -0
- package/src/mcp/tools/search-input.ts +87 -0
- package/src/mcp/tools/search.ts +168 -0
- package/src/mcp/utils.ts +199 -0
- package/test/client/auth/config-loaders.test.ts +92 -0
- package/test/client/auth/decorators/with-caching.test.ts +482 -0
- package/test/client/auth/factory.test.ts +68 -0
- package/test/client/auth/providers/jwt-auth-provider.test.ts +398 -0
- package/test/client/auth/types.test.ts +18 -0
- package/test/client/command.test.ts +163 -0
- package/test/client/config/loader.test.ts +377 -0
- package/test/client/config/unified-loader.test.ts +136 -0
- package/test/client/deployment-config.test.ts +69 -0
- package/test/client/errors/index.test.ts +408 -0
- package/test/client/helpers/mock-fetch.ts +42 -0
- package/test/client/http-client.test.ts +1148 -0
- package/test/client/integration/auth-providers.integration.test.ts +186 -0
- package/test/client/internal-dsl-client.test.ts +76 -0
- package/test/client/rate-limiter.test.ts +204 -0
- package/test/client/resolve-api-key-user.test.ts +87 -0
- package/test/dsl/client.special-functions.test.ts +387 -0
- package/test/dsl/client.test.ts +457 -0
- package/test/dsl/commands/apply-filters.test.ts +147 -0
- package/test/dsl/commands/functions/ClassifyCommand.test.ts +170 -0
- package/test/dsl/commands/functions/ExtractAffiliationsCommand.test.ts +306 -0
- package/test/dsl/commands/functions/ExtractConceptsCommand.test.ts +136 -0
- package/test/dsl/commands/functions/ExtractGrantsCommand.test.ts +202 -0
- package/test/dsl/commands/search/filters.test.ts +42 -0
- package/test/dsl/fluent-query-builder.test.ts +865 -0
- package/test/dsl/integration/client.integration.test.ts +294 -0
- package/test/dsl/integration/facet-api.integration.test.ts +276 -0
- package/test/dsl/integration/field-existence.integration.test.ts +148 -0
- package/test/dsl/integration/fluent-api-docs-examples.integration.test.ts +988 -0
- package/test/dsl/integration/fluent-api.integration.test.ts +615 -0
- package/test/dsl/integration/search-helpers.ts +27 -0
- package/test/dsl/integration/special-functions.integration.test.ts +224 -0
- package/test/dsl/integration/test-config.ts +52 -0
- package/test/dsl/pagination.test.ts +86 -0
- package/test/dsl/query-builder.test.ts +1775 -0
- package/test/dsl/response-parser.test.ts +520 -0
- package/test/dsl/schema/cache.test.ts +53 -0
- package/test/dsl/schema/load.test.ts +165 -0
- package/test/dsl/schema/summary.test.ts +61 -0
- package/test/dsl/schema/validation.test.ts +46 -0
- package/test/dsl/time-series.test.ts +135 -0
- package/test/dsl/unnest.test.ts +151 -0
- package/test/dsl/usage-policy.test.ts +100 -0
- package/test/dsl/utils/escape.property.test.ts +109 -0
- package/test/dsl/utils/escape.test.ts +140 -0
- package/test/dsl/utils/validate-field-name.property.test.ts +99 -0
- package/test/dsl/utils/validate-field-name.test.ts +55 -0
- package/test/examples/dsl-examples.test.ts +29 -0
- package/test/examples/usage-scenarios.test.ts +90 -0
- package/test/fixtures/describe-schema.json +4000 -0
- package/test/funder-org-names.test.ts +20 -0
- package/test/helpers/schema-fixture.ts +18 -0
- package/test/helpers/tool-test-harness.ts +114 -0
- package/test/integration/assertions.ts +263 -0
- package/test/integration/env.ts +108 -0
- package/test/integration/harness.ts +307 -0
- package/test/integration/hosted-client.ts +56 -0
- package/test/integration/hosted-mocks.ts +81 -0
- package/test/integration/hosted-run.ts +86 -0
- package/test/integration/hosted.e2e.test.ts +101 -0
- package/test/integration/reporter.ts +100 -0
- package/test/integration/run.ts +74 -0
- package/test/integration/suites/analytics.integration.ts +72 -0
- package/test/integration/suites/functions.integration.ts +37 -0
- package/test/integration/suites/hosted-smoke.integration.ts +38 -0
- package/test/integration/suites/index.ts +22 -0
- package/test/integration/suites/lookup.integration.ts +57 -0
- package/test/integration/suites/query.integration.ts +49 -0
- package/test/integration/suites/resources.integration.ts +68 -0
- package/test/integration/suites/search.integration.ts +80 -0
- package/test/integration/types.ts +92 -0
- package/test/integration/verify-usage-scenarios.ts +162 -0
- package/test/mcp/export-format.test.ts +67 -0
- package/test/mcp/http-server.test.ts +80 -0
- package/test/middleware/field-aliases.test.ts +287 -0
- package/test/resources/schema.test.ts +28 -0
- package/test/schema/describe-contract.test.ts +24 -0
- package/test/schema/store.test.ts +45 -0
- package/test/server.test.ts +170 -0
- package/test/tools/analytics-filters.test.ts +35 -0
- package/test/tools/analytics.test.ts +419 -0
- package/test/tools/fetch-search-pages.test.ts +200 -0
- package/test/tools/functions.test.ts +153 -0
- package/test/tools/lookup.test.ts +296 -0
- package/test/tools/query.test.ts +100 -0
- package/test/tools/schema.test.ts +37 -0
- package/test/tools/search.test.ts +415 -0
- package/test/utils.test.ts +45 -0
- package/tsconfig.json +9 -0
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1,4000 @@
|
|
|
1
|
+
{
|
|
2
|
+
"sources": {
|
|
3
|
+
"publications": {
|
|
4
|
+
"fields": {
|
|
5
|
+
"authors": {
|
|
6
|
+
"type": "json",
|
|
7
|
+
"description": "Ordered list of authors names and their affiliations, as they appear in the original publication. The list can include researcher and organization identifiers, when available (note: in order to search for disambiguated authors, use the `in researchers` syntax).",
|
|
8
|
+
"long_description": "Returned objects contain: ``first_name``, ``last_name``, ``corresponding``, ``orcid``, ``current_organization_id``, ``researcher_id``, ``affiliations`` and ``raw_affiliation``.\n\n For example:\n \n .. code-block:: json\n \n {\n \"raw_affiliation\": [\n \"Centre for Operational Research, International Union Against Tuberculosis and Lung Disease (The Union), Paris, France.\",\n \"Centre for Operational Research, The Union South-East Asia Office, New Delhi, India.\"\n ],\n \"first_name\": \"Pruthu\",\n \"last_name\": \"Thekkur\",\n \"corresponding\": \"\",\n \"orcid\": \"['s']\",\n \"current_organization_id\": \"grid.435357.3\",\n \"researcher_id\": \"ur.0670077515.38\",\n \"affiliations\": [\n {\n \"raw_affiliation\": \"Centre for Operational Research, International Union Against Tuberculosis and Lung Disease (The Union), Paris, France.\",\n \"id\": \"grid.435357.3\",\n \"name\": \"International Union Against Tuberculosis and Lung Disease\",\n \"city\": \"Paris\",\n \"city_id\": 2988507,\n \"country\": \"France\",\n \"country_code\": \"FR\",\n \"state\": null,\n \"state_code\": null\n },\n {\n \"raw_affiliation\": \"Centre for Operational Research, The Union South-East Asia Office, New Delhi, India.\",\n \"id\": \"grid.8195.5\",\n \"name\": \"University of Delhi\",\n \"city\": \"New Delhi\",\n \"city_id\": 1261481,\n \"country\": \"India\",\n \"country_code\": \"IN\",\n \"state\": null,\n \"state_code\": null\n }\n ]\n }",
|
|
9
|
+
"is_entity": false,
|
|
10
|
+
"is_filter": true,
|
|
11
|
+
"is_facet": false,
|
|
12
|
+
"is_multivalue": true,
|
|
13
|
+
"solr_fields": { "return": "affiliations", "filter": "author_list" }
|
|
14
|
+
},
|
|
15
|
+
"type": {
|
|
16
|
+
"type": "string",
|
|
17
|
+
"description": "Publication type (one of: article, chapter, proceeding, monograph, preprint or book).",
|
|
18
|
+
"long_description": null,
|
|
19
|
+
"is_entity": false,
|
|
20
|
+
"is_filter": true,
|
|
21
|
+
"is_facet": false,
|
|
22
|
+
"is_multivalue": false,
|
|
23
|
+
"solr_fields": { "return": "pub_class", "filter": "pub_class" }
|
|
24
|
+
},
|
|
25
|
+
"arxiv_id": {
|
|
26
|
+
"type": "string",
|
|
27
|
+
"description": "The publications arXiv identifier (e.g. \u2018arXiv:2102.02477\u2019).",
|
|
28
|
+
"long_description": null,
|
|
29
|
+
"is_entity": false,
|
|
30
|
+
"is_filter": true,
|
|
31
|
+
"is_facet": false,
|
|
32
|
+
"is_multivalue": false,
|
|
33
|
+
"solr_fields": { "return": "arxiv_id", "filter": "arxiv_id" }
|
|
34
|
+
},
|
|
35
|
+
"date_online": {
|
|
36
|
+
"type": "string",
|
|
37
|
+
"description": "The publication online date.",
|
|
38
|
+
"long_description": null,
|
|
39
|
+
"is_entity": false,
|
|
40
|
+
"is_filter": true,
|
|
41
|
+
"is_facet": false,
|
|
42
|
+
"is_multivalue": false,
|
|
43
|
+
"solr_fields": { "return": "online_pub_date", "filter": "online_pub_date" }
|
|
44
|
+
},
|
|
45
|
+
"funders": {
|
|
46
|
+
"type": "organizations",
|
|
47
|
+
"description": "The GRID organisation funding this publication.",
|
|
48
|
+
"long_description": null,
|
|
49
|
+
"is_entity": true,
|
|
50
|
+
"is_filter": true,
|
|
51
|
+
"is_facet": false,
|
|
52
|
+
"is_multivalue": true,
|
|
53
|
+
"solr_fields": { "return": "funder_grid_ids", "filter": "funder_grid_ids" }
|
|
54
|
+
},
|
|
55
|
+
"category_hrcs_hc": {
|
|
56
|
+
"type": "categories",
|
|
57
|
+
"description": "`HRCS - Health Categories <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
58
|
+
"long_description": null,
|
|
59
|
+
"is_entity": true,
|
|
60
|
+
"is_filter": true,
|
|
61
|
+
"is_facet": false,
|
|
62
|
+
"is_multivalue": true,
|
|
63
|
+
"solr_fields": { "return": "hrcs_hc_2020", "filter": "hrcs_hc_2020" }
|
|
64
|
+
},
|
|
65
|
+
"date_inserted": {
|
|
66
|
+
"type": "date",
|
|
67
|
+
"description": "Date when the record was inserted into Dimensions (note: this field does not support exact match on the data, only range filters e.g. `<=` or `>=').",
|
|
68
|
+
"long_description": null,
|
|
69
|
+
"is_entity": false,
|
|
70
|
+
"is_filter": true,
|
|
71
|
+
"is_facet": false,
|
|
72
|
+
"is_multivalue": false,
|
|
73
|
+
"solr_fields": { "return": "created_in_dimensions", "filter": "created_in_dimensions" }
|
|
74
|
+
},
|
|
75
|
+
"pages": {
|
|
76
|
+
"type": "string",
|
|
77
|
+
"description": "The pages of the publication, as they would appear in a citation record.",
|
|
78
|
+
"long_description": null,
|
|
79
|
+
"is_entity": false,
|
|
80
|
+
"is_filter": true,
|
|
81
|
+
"is_facet": false,
|
|
82
|
+
"is_multivalue": false,
|
|
83
|
+
"solr_fields": { "return": "pages", "filter": "pages" }
|
|
84
|
+
},
|
|
85
|
+
"resulting_publication_doi": {
|
|
86
|
+
"type": "string",
|
|
87
|
+
"description": "For preprints, the DOIs of the resulting full publications.",
|
|
88
|
+
"long_description": null,
|
|
89
|
+
"is_entity": false,
|
|
90
|
+
"is_filter": true,
|
|
91
|
+
"is_facet": false,
|
|
92
|
+
"is_multivalue": false,
|
|
93
|
+
"solr_fields": {
|
|
94
|
+
"return": "resulting_publication_doi",
|
|
95
|
+
"filter": "resulting_publication_doi"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"research_org_cities": {
|
|
99
|
+
"type": "cities",
|
|
100
|
+
"description": "City of the organisations authors are affiliated to, expressed as GeoNames ID and name.",
|
|
101
|
+
"long_description": null,
|
|
102
|
+
"is_entity": true,
|
|
103
|
+
"is_filter": true,
|
|
104
|
+
"is_facet": false,
|
|
105
|
+
"is_multivalue": true,
|
|
106
|
+
"solr_fields": { "return": "aff_city_geonames_ids", "filter": "aff_city_geonames_ids" }
|
|
107
|
+
},
|
|
108
|
+
"pmid": {
|
|
109
|
+
"type": "string",
|
|
110
|
+
"description": "PubMed ID.",
|
|
111
|
+
"long_description": null,
|
|
112
|
+
"is_entity": false,
|
|
113
|
+
"is_filter": true,
|
|
114
|
+
"is_facet": false,
|
|
115
|
+
"is_multivalue": false,
|
|
116
|
+
"solr_fields": { "return": "pmid", "filter": "pmid" }
|
|
117
|
+
},
|
|
118
|
+
"volume": {
|
|
119
|
+
"type": "string",
|
|
120
|
+
"description": "Publication volume.",
|
|
121
|
+
"long_description": null,
|
|
122
|
+
"is_entity": false,
|
|
123
|
+
"is_filter": true,
|
|
124
|
+
"is_facet": false,
|
|
125
|
+
"is_multivalue": false,
|
|
126
|
+
"solr_fields": { "return": "volume", "filter": "volume" }
|
|
127
|
+
},
|
|
128
|
+
"altmetric_id": {
|
|
129
|
+
"type": "integer",
|
|
130
|
+
"description": "Altmetric Publication ID",
|
|
131
|
+
"long_description": null,
|
|
132
|
+
"is_entity": false,
|
|
133
|
+
"is_filter": true,
|
|
134
|
+
"is_facet": false,
|
|
135
|
+
"is_multivalue": false,
|
|
136
|
+
"solr_fields": { "return": "altmetric_id", "filter": "altmetric_id" }
|
|
137
|
+
},
|
|
138
|
+
"journal_title_raw": {
|
|
139
|
+
"type": "string",
|
|
140
|
+
"description": "The journal title, as it appears in the original source (note: this field can be used to retrieve historical titles of journals whose official title was later updated).",
|
|
141
|
+
"long_description": null,
|
|
142
|
+
"is_entity": false,
|
|
143
|
+
"is_filter": true,
|
|
144
|
+
"is_facet": false,
|
|
145
|
+
"is_multivalue": false,
|
|
146
|
+
"solr_fields": { "return": "journal_title_original", "filter": "journal_title_original" }
|
|
147
|
+
},
|
|
148
|
+
"journal_lists": {
|
|
149
|
+
"type": "string",
|
|
150
|
+
"description": "Independent grouping of journals outside of Dimensions, e.g. 'ERA 2015' or 'Norwegian register level 1'.",
|
|
151
|
+
"long_description": null,
|
|
152
|
+
"is_entity": false,
|
|
153
|
+
"is_filter": true,
|
|
154
|
+
"is_facet": false,
|
|
155
|
+
"is_multivalue": true,
|
|
156
|
+
"solr_fields": { "return": "journallist_names", "filter": "journallist_names" }
|
|
157
|
+
},
|
|
158
|
+
"research_org_names": {
|
|
159
|
+
"type": "string",
|
|
160
|
+
"description": "Names of organizations authors are affiliated to. If the organization has a GRID ID, the canonical organization name is used. Otherwise the original affiliation string is used.",
|
|
161
|
+
"long_description": null,
|
|
162
|
+
"is_entity": false,
|
|
163
|
+
"is_filter": true,
|
|
164
|
+
"is_facet": false,
|
|
165
|
+
"is_multivalue": true,
|
|
166
|
+
"solr_fields": { "return": "aff_org_name", "filter": "aff_org_name" }
|
|
167
|
+
},
|
|
168
|
+
"category_icrp_cso": {
|
|
169
|
+
"type": "categories",
|
|
170
|
+
"description": "`ICRP Common Scientific Outline <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
171
|
+
"long_description": null,
|
|
172
|
+
"is_entity": true,
|
|
173
|
+
"is_filter": true,
|
|
174
|
+
"is_facet": false,
|
|
175
|
+
"is_multivalue": true,
|
|
176
|
+
"solr_fields": { "return": "icrp_cso_2020", "filter": "icrp_cso_2020" }
|
|
177
|
+
},
|
|
178
|
+
"research_org_countries": {
|
|
179
|
+
"type": "countries",
|
|
180
|
+
"description": "Country of the organisations authors are affiliated to, identified using GeoNames codes (note: this field supports :ref:`filter-functions`: ``count``).",
|
|
181
|
+
"long_description": null,
|
|
182
|
+
"is_entity": true,
|
|
183
|
+
"is_filter": true,
|
|
184
|
+
"is_facet": false,
|
|
185
|
+
"is_multivalue": true,
|
|
186
|
+
"solr_fields": { "return": "aff_country_codes", "filter": "aff_country_codes" }
|
|
187
|
+
},
|
|
188
|
+
"proceedings_title": {
|
|
189
|
+
"type": "string",
|
|
190
|
+
"description": "Title of the conference proceedings volume associated to a publication.",
|
|
191
|
+
"long_description": null,
|
|
192
|
+
"is_entity": false,
|
|
193
|
+
"is_filter": false,
|
|
194
|
+
"is_facet": false,
|
|
195
|
+
"is_multivalue": false,
|
|
196
|
+
"solr_fields": { "return": "proceedings_title", "filter": "proceedings_title" }
|
|
197
|
+
},
|
|
198
|
+
"clinical_trial_ids": {
|
|
199
|
+
"type": "string",
|
|
200
|
+
"description": "Clinical Trial IDs mentioned in publications full text.",
|
|
201
|
+
"long_description": null,
|
|
202
|
+
"is_entity": false,
|
|
203
|
+
"is_filter": true,
|
|
204
|
+
"is_facet": false,
|
|
205
|
+
"is_multivalue": true,
|
|
206
|
+
"solr_fields": { "return": "clinical_trial_ids", "filter": "clinical_trial_ids" }
|
|
207
|
+
},
|
|
208
|
+
"concepts_scores": {
|
|
209
|
+
"type": "json",
|
|
210
|
+
"description": "Relevancy scores for `concepts`.",
|
|
211
|
+
"long_description": "Returned objects contain: ``concept``, ``relevance``.\n \n For example:\n \n .. code-block:: json\n \n {\n \"concepts_scores\": [\n {\n \"concept\": \"professional relations\",\n \"relevance\": 0.088\n },\n {\n \"concept\": \"relation\",\n \"relevance\": 0.062\n },\n {\n \"concept\": \"representation\",\n \"relevance\": 0.025\n },\n {\n \"concept\": \"skald\",\n \"relevance\": 6.984\n },\n {\n \"concept\": \"Representations of Skalds\",\n \"relevance\": 0.0\n },\n {\n \"concept\": \"Sagas 1\",\n \"relevance\": 0.0\n }\n ]\n }",
|
|
212
|
+
"is_entity": false,
|
|
213
|
+
"is_filter": true,
|
|
214
|
+
"is_facet": false,
|
|
215
|
+
"is_multivalue": false,
|
|
216
|
+
"solr_fields": { "return": "terms_v6", "filter": "phrases_search_v6" }
|
|
217
|
+
},
|
|
218
|
+
"mesh_terms": {
|
|
219
|
+
"type": "string",
|
|
220
|
+
"description": "Medical Subject Heading terms as used in PubMed.",
|
|
221
|
+
"long_description": null,
|
|
222
|
+
"is_entity": false,
|
|
223
|
+
"is_filter": true,
|
|
224
|
+
"is_facet": false,
|
|
225
|
+
"is_multivalue": true,
|
|
226
|
+
"solr_fields": { "return": "mesh_terms", "filter": "mesh_terms_search" }
|
|
227
|
+
},
|
|
228
|
+
"date": {
|
|
229
|
+
"type": "date",
|
|
230
|
+
"description": "The publication date for the version of record of a document (note: incomplete dates are always normalised as \u2018YYYY-MM-DD\u2019, so \"2018-01\" becomes \"2018-01-01\".).",
|
|
231
|
+
"long_description": null,
|
|
232
|
+
"is_entity": false,
|
|
233
|
+
"is_filter": true,
|
|
234
|
+
"is_facet": false,
|
|
235
|
+
"is_multivalue": false,
|
|
236
|
+
"solr_fields": { "return": "pub_date_normalized", "filter": "pub_date_normalized" }
|
|
237
|
+
},
|
|
238
|
+
"doi": {
|
|
239
|
+
"type": "string",
|
|
240
|
+
"description": "Digital object identifier.",
|
|
241
|
+
"long_description": null,
|
|
242
|
+
"is_entity": false,
|
|
243
|
+
"is_filter": true,
|
|
244
|
+
"is_facet": false,
|
|
245
|
+
"is_multivalue": false,
|
|
246
|
+
"solr_fields": { "return": "doi", "filter": "doi" }
|
|
247
|
+
},
|
|
248
|
+
"linkout": {
|
|
249
|
+
"type": "string",
|
|
250
|
+
"description": "Original URL for a publication full text.",
|
|
251
|
+
"long_description": null,
|
|
252
|
+
"is_entity": false,
|
|
253
|
+
"is_filter": false,
|
|
254
|
+
"is_facet": false,
|
|
255
|
+
"is_multivalue": false,
|
|
256
|
+
"solr_fields": { "return": "linkout_oa", "filter": "linkout_oa" }
|
|
257
|
+
},
|
|
258
|
+
"category_hra": {
|
|
259
|
+
"type": "categories",
|
|
260
|
+
"description": "`Health Research Areas <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
261
|
+
"long_description": null,
|
|
262
|
+
"is_entity": true,
|
|
263
|
+
"is_filter": true,
|
|
264
|
+
"is_facet": false,
|
|
265
|
+
"is_multivalue": true,
|
|
266
|
+
"solr_fields": { "return": "health_research_areas", "filter": "health_research_areas" }
|
|
267
|
+
},
|
|
268
|
+
"dimensions_url": {
|
|
269
|
+
"type": "string",
|
|
270
|
+
"description": "Link pointing to the Dimensions web application",
|
|
271
|
+
"long_description": null,
|
|
272
|
+
"is_entity": false,
|
|
273
|
+
"is_filter": false,
|
|
274
|
+
"is_facet": false,
|
|
275
|
+
"is_multivalue": false,
|
|
276
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
277
|
+
},
|
|
278
|
+
"pmcid": {
|
|
279
|
+
"type": "string",
|
|
280
|
+
"description": "PubMed Central ID.",
|
|
281
|
+
"long_description": null,
|
|
282
|
+
"is_entity": false,
|
|
283
|
+
"is_filter": true,
|
|
284
|
+
"is_facet": false,
|
|
285
|
+
"is_multivalue": false,
|
|
286
|
+
"solr_fields": { "return": "pmc_id", "filter": "pmc_id" }
|
|
287
|
+
},
|
|
288
|
+
"date_print": {
|
|
289
|
+
"type": "string",
|
|
290
|
+
"description": "The publication print date.",
|
|
291
|
+
"long_description": null,
|
|
292
|
+
"is_entity": false,
|
|
293
|
+
"is_filter": true,
|
|
294
|
+
"is_facet": false,
|
|
295
|
+
"is_multivalue": false,
|
|
296
|
+
"solr_fields": { "return": "print_pub_date", "filter": "print_pub_date" }
|
|
297
|
+
},
|
|
298
|
+
"book_series_title": {
|
|
299
|
+
"type": "string",
|
|
300
|
+
"description": "The title of the book series book, belong to.",
|
|
301
|
+
"long_description": null,
|
|
302
|
+
"is_entity": false,
|
|
303
|
+
"is_filter": false,
|
|
304
|
+
"is_facet": false,
|
|
305
|
+
"is_multivalue": false,
|
|
306
|
+
"solr_fields": { "return": "book_series_title", "filter": "book_series_title" }
|
|
307
|
+
},
|
|
308
|
+
"category_for": {
|
|
309
|
+
"type": "categories",
|
|
310
|
+
"description": "`ANZSRC Fields of Research classification <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_ (alias for most recent version).",
|
|
311
|
+
"long_description": null,
|
|
312
|
+
"is_entity": true,
|
|
313
|
+
"is_filter": true,
|
|
314
|
+
"is_facet": false,
|
|
315
|
+
"is_multivalue": true,
|
|
316
|
+
"solr_fields": { "return": "for_2020_2022", "filter": "for_2020_2022" }
|
|
317
|
+
},
|
|
318
|
+
"research_org_country_names": {
|
|
319
|
+
"type": "string",
|
|
320
|
+
"description": "Country name of the organisations authors are affiliated to, as a string.",
|
|
321
|
+
"long_description": null,
|
|
322
|
+
"is_entity": false,
|
|
323
|
+
"is_filter": true,
|
|
324
|
+
"is_facet": false,
|
|
325
|
+
"is_multivalue": true,
|
|
326
|
+
"solr_fields": { "return": "aff_country_name", "filter": "aff_country_name" }
|
|
327
|
+
},
|
|
328
|
+
"abstract": {
|
|
329
|
+
"type": "string",
|
|
330
|
+
"description": "The publication abstract.",
|
|
331
|
+
"long_description": null,
|
|
332
|
+
"is_entity": false,
|
|
333
|
+
"is_filter": false,
|
|
334
|
+
"is_facet": false,
|
|
335
|
+
"is_multivalue": false,
|
|
336
|
+
"solr_fields": { "return": "abstract", "filter": "abstract" }
|
|
337
|
+
},
|
|
338
|
+
"title": {
|
|
339
|
+
"type": "string",
|
|
340
|
+
"description": "Title of a publication.",
|
|
341
|
+
"long_description": null,
|
|
342
|
+
"is_entity": false,
|
|
343
|
+
"is_filter": false,
|
|
344
|
+
"is_facet": false,
|
|
345
|
+
"is_multivalue": false,
|
|
346
|
+
"solr_fields": { "return": "title", "filter": "title" }
|
|
347
|
+
},
|
|
348
|
+
"relative_citation_ratio": {
|
|
349
|
+
"type": "float",
|
|
350
|
+
"description": "Relative citation performance of an article when compared to others in its area of research (note: does not support emptiness filters).",
|
|
351
|
+
"long_description": null,
|
|
352
|
+
"is_entity": false,
|
|
353
|
+
"is_filter": true,
|
|
354
|
+
"is_facet": false,
|
|
355
|
+
"is_multivalue": false,
|
|
356
|
+
"solr_fields": {
|
|
357
|
+
"return": "relative_citation_ratio",
|
|
358
|
+
"filter": "relative_citation_ratio"
|
|
359
|
+
}
|
|
360
|
+
},
|
|
361
|
+
"id": {
|
|
362
|
+
"type": "string",
|
|
363
|
+
"description": "Dimensions publication ID.",
|
|
364
|
+
"long_description": null,
|
|
365
|
+
"is_entity": false,
|
|
366
|
+
"is_filter": true,
|
|
367
|
+
"is_facet": false,
|
|
368
|
+
"is_multivalue": false,
|
|
369
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
370
|
+
},
|
|
371
|
+
"category_sdg": {
|
|
372
|
+
"type": "categories",
|
|
373
|
+
"description": "SDG - Sustainable Development Goals",
|
|
374
|
+
"long_description": null,
|
|
375
|
+
"is_entity": true,
|
|
376
|
+
"is_filter": true,
|
|
377
|
+
"is_facet": false,
|
|
378
|
+
"is_multivalue": true,
|
|
379
|
+
"solr_fields": { "return": "sdg_2021", "filter": "sdg_2021" }
|
|
380
|
+
},
|
|
381
|
+
"field_citation_ratio": {
|
|
382
|
+
"type": "float",
|
|
383
|
+
"description": "Relative citation performance of article when compared to similarly aged articles in its area of research (note: does not support emptiness filters).",
|
|
384
|
+
"long_description": null,
|
|
385
|
+
"is_entity": false,
|
|
386
|
+
"is_filter": true,
|
|
387
|
+
"is_facet": false,
|
|
388
|
+
"is_multivalue": false,
|
|
389
|
+
"solr_fields": {
|
|
390
|
+
"return": "field_citation_ratio_2020",
|
|
391
|
+
"filter": "field_citation_ratio_2020"
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
"research_orgs": {
|
|
395
|
+
"type": "organizations",
|
|
396
|
+
"description": "GRID organisations associated to a publication. Identifiers are automatically extracted from author affiliations text, so they can be missing in some cases (note: this field supports :ref:`filter-functions`: ``count``).",
|
|
397
|
+
"long_description": null,
|
|
398
|
+
"is_entity": true,
|
|
399
|
+
"is_filter": true,
|
|
400
|
+
"is_facet": false,
|
|
401
|
+
"is_multivalue": true,
|
|
402
|
+
"solr_fields": { "return": "aff_org_id", "filter": "aff_org_id" }
|
|
403
|
+
},
|
|
404
|
+
"reference_ids": {
|
|
405
|
+
"type": "string",
|
|
406
|
+
"description": "Dimensions publication ID for publications in the references list, i.e. outgoing citations (see also: :ref:`publications_model` section).",
|
|
407
|
+
"long_description": null,
|
|
408
|
+
"is_entity": false,
|
|
409
|
+
"is_filter": true,
|
|
410
|
+
"is_facet": false,
|
|
411
|
+
"is_multivalue": true,
|
|
412
|
+
"solr_fields": { "return": "cited_dimensions_ids", "filter": "cited_dimensions_ids" }
|
|
413
|
+
},
|
|
414
|
+
"category_uoa": {
|
|
415
|
+
"type": "categories",
|
|
416
|
+
"description": "`Units of Assessment <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
417
|
+
"long_description": null,
|
|
418
|
+
"is_entity": true,
|
|
419
|
+
"is_filter": true,
|
|
420
|
+
"is_facet": false,
|
|
421
|
+
"is_multivalue": true,
|
|
422
|
+
"solr_fields": { "return": "uoa_2023", "filter": "uoa_2023" }
|
|
423
|
+
},
|
|
424
|
+
"journal": {
|
|
425
|
+
"type": "journals",
|
|
426
|
+
"description": "The journal a publication belongs to.",
|
|
427
|
+
"long_description": null,
|
|
428
|
+
"is_entity": true,
|
|
429
|
+
"is_filter": true,
|
|
430
|
+
"is_facet": false,
|
|
431
|
+
"is_multivalue": false,
|
|
432
|
+
"solr_fields": { "return": "source_title_id", "filter": "source_title_id" }
|
|
433
|
+
},
|
|
434
|
+
"referenced_pubs": {
|
|
435
|
+
"type": "publication_links",
|
|
436
|
+
"description": "Publication IDs of the publications in the references list, i.e. outgoing citations.",
|
|
437
|
+
"long_description": null,
|
|
438
|
+
"is_entity": true,
|
|
439
|
+
"is_filter": true,
|
|
440
|
+
"is_facet": false,
|
|
441
|
+
"is_multivalue": true,
|
|
442
|
+
"solr_fields": { "return": "cited_dimensions_ids", "filter": "cited_dimensions_ids" }
|
|
443
|
+
},
|
|
444
|
+
"category_icrp_ct": {
|
|
445
|
+
"type": "categories",
|
|
446
|
+
"description": "`ICRP Cancer Types <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
447
|
+
"long_description": null,
|
|
448
|
+
"is_entity": true,
|
|
449
|
+
"is_filter": true,
|
|
450
|
+
"is_facet": false,
|
|
451
|
+
"is_multivalue": true,
|
|
452
|
+
"solr_fields": { "return": "icrp_ct_2020", "filter": "icrp_ct_2020" }
|
|
453
|
+
},
|
|
454
|
+
"category_hrcs_rac": {
|
|
455
|
+
"type": "categories",
|
|
456
|
+
"description": "`HRCS \u2013 Research Activity Codes <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
457
|
+
"long_description": null,
|
|
458
|
+
"is_entity": true,
|
|
459
|
+
"is_filter": true,
|
|
460
|
+
"is_facet": false,
|
|
461
|
+
"is_multivalue": true,
|
|
462
|
+
"solr_fields": { "return": "hrcs_rac_2020", "filter": "hrcs_rac_2020" }
|
|
463
|
+
},
|
|
464
|
+
"supporting_grant_ids": {
|
|
465
|
+
"type": "string",
|
|
466
|
+
"description": "Grants supporting a publication, returned as a list of dimensions grants IDs (see also: :ref:`publications_model` section).",
|
|
467
|
+
"long_description": null,
|
|
468
|
+
"is_entity": false,
|
|
469
|
+
"is_filter": true,
|
|
470
|
+
"is_facet": false,
|
|
471
|
+
"is_multivalue": true,
|
|
472
|
+
"solr_fields": { "return": "uber_grant_id", "filter": "uber_grant_id" }
|
|
473
|
+
},
|
|
474
|
+
"year": {
|
|
475
|
+
"type": "integer",
|
|
476
|
+
"description": "The year for the version of record of publication (note: when the `date` field is available, this is equal to the year part of the full date).",
|
|
477
|
+
"long_description": null,
|
|
478
|
+
"is_entity": false,
|
|
479
|
+
"is_filter": true,
|
|
480
|
+
"is_facet": false,
|
|
481
|
+
"is_multivalue": false,
|
|
482
|
+
"solr_fields": { "return": "pub_year", "filter": "pub_year" }
|
|
483
|
+
},
|
|
484
|
+
"times_cited": {
|
|
485
|
+
"type": "integer",
|
|
486
|
+
"description": "Number of citations (note: does not support emptiness filters).",
|
|
487
|
+
"long_description": null,
|
|
488
|
+
"is_entity": false,
|
|
489
|
+
"is_filter": true,
|
|
490
|
+
"is_facet": false,
|
|
491
|
+
"is_multivalue": false,
|
|
492
|
+
"solr_fields": { "return": "times_cited", "filter": "times_cited" }
|
|
493
|
+
},
|
|
494
|
+
"book_title": {
|
|
495
|
+
"type": "string",
|
|
496
|
+
"description": "The title of the book a chapter belongs to (note: this field is available only for chapters).",
|
|
497
|
+
"long_description": null,
|
|
498
|
+
"is_entity": false,
|
|
499
|
+
"is_filter": false,
|
|
500
|
+
"is_facet": false,
|
|
501
|
+
"is_multivalue": false,
|
|
502
|
+
"solr_fields": { "return": "book_title", "filter": "book_title" }
|
|
503
|
+
},
|
|
504
|
+
"recent_citations": {
|
|
505
|
+
"type": "integer",
|
|
506
|
+
"description": "Number of citations received in the last two years. Does not support emptiness filters",
|
|
507
|
+
"long_description": null,
|
|
508
|
+
"is_entity": false,
|
|
509
|
+
"is_filter": true,
|
|
510
|
+
"is_facet": false,
|
|
511
|
+
"is_multivalue": false,
|
|
512
|
+
"solr_fields": { "return": "recent_citations", "filter": "recent_citations" }
|
|
513
|
+
},
|
|
514
|
+
"research_org_state_names": {
|
|
515
|
+
"type": "string",
|
|
516
|
+
"description": "State name of the organisations authors are affiliated to, as a string.",
|
|
517
|
+
"long_description": null,
|
|
518
|
+
"is_entity": false,
|
|
519
|
+
"is_filter": false,
|
|
520
|
+
"is_facet": false,
|
|
521
|
+
"is_multivalue": true,
|
|
522
|
+
"solr_fields": { "return": "aff_state_name", "filter": "aff_state_name" }
|
|
523
|
+
},
|
|
524
|
+
"concepts": {
|
|
525
|
+
"type": "json",
|
|
526
|
+
"description": "Concepts describing the main topics of a publication (note: automatically derived from the publication text using machine learning).",
|
|
527
|
+
"long_description": null,
|
|
528
|
+
"is_entity": false,
|
|
529
|
+
"is_filter": true,
|
|
530
|
+
"is_facet": false,
|
|
531
|
+
"is_multivalue": false,
|
|
532
|
+
"solr_fields": { "return": "terms_v6", "filter": "phrases_search_v6" }
|
|
533
|
+
},
|
|
534
|
+
"issue": {
|
|
535
|
+
"type": "string",
|
|
536
|
+
"description": "The issue number of a publication.",
|
|
537
|
+
"long_description": null,
|
|
538
|
+
"is_entity": false,
|
|
539
|
+
"is_filter": true,
|
|
540
|
+
"is_facet": false,
|
|
541
|
+
"is_multivalue": false,
|
|
542
|
+
"solr_fields": { "return": "issue", "filter": "issue" }
|
|
543
|
+
},
|
|
544
|
+
"open_access": {
|
|
545
|
+
"type": "string",
|
|
546
|
+
"description": "Open Access categories for publications (`more info <https://dimensions.freshdesk.com/support/solutions/articles/23000018863-where-does-the-definition-of-open-access-come-from-in-dimensions-what-does-it-include->`_)",
|
|
547
|
+
"long_description": "Open Access category data for publications values:\n\n * `oa_all`: Publication is either gold, hybrid, bronze or green OA.\n * `hybrid`: Publication freely available under an open licence in a paid-access journal\n * `bronze`: Document freely available on publisher page, but without an open licence and not in a full OA journal\n * `gold`: Publication published in a full OA journal\n * `green`: Free copy of the publication available in an OA repository\n * `closed`: No freely available copy has been identified",
|
|
548
|
+
"is_entity": false,
|
|
549
|
+
"is_filter": true,
|
|
550
|
+
"is_facet": false,
|
|
551
|
+
"is_multivalue": true,
|
|
552
|
+
"solr_fields": {
|
|
553
|
+
"return": "open_access_status_analytics_v2",
|
|
554
|
+
"filter": "open_access_status_analytics_v2"
|
|
555
|
+
}
|
|
556
|
+
},
|
|
557
|
+
"funder_countries": {
|
|
558
|
+
"type": "countries",
|
|
559
|
+
"description": "The country of the organisations funding this publication.",
|
|
560
|
+
"long_description": null,
|
|
561
|
+
"is_entity": true,
|
|
562
|
+
"is_filter": true,
|
|
563
|
+
"is_facet": false,
|
|
564
|
+
"is_multivalue": true,
|
|
565
|
+
"solr_fields": { "return": "funder_country_codes", "filter": "funder_country_codes" }
|
|
566
|
+
},
|
|
567
|
+
"research_org_state_codes": {
|
|
568
|
+
"type": "states",
|
|
569
|
+
"description": "State of the organisations authors are affiliated to, expressed as GeoNames codes (ISO\u200c-3166-2).",
|
|
570
|
+
"long_description": null,
|
|
571
|
+
"is_entity": true,
|
|
572
|
+
"is_filter": true,
|
|
573
|
+
"is_facet": false,
|
|
574
|
+
"is_multivalue": true,
|
|
575
|
+
"solr_fields": { "return": "aff_state_codes", "filter": "aff_state_codes" }
|
|
576
|
+
},
|
|
577
|
+
"authors_count": {
|
|
578
|
+
"type": "integer",
|
|
579
|
+
"description": "Count of authors, as they appear in the original publication.",
|
|
580
|
+
"long_description": null,
|
|
581
|
+
"is_entity": false,
|
|
582
|
+
"is_filter": true,
|
|
583
|
+
"is_facet": false,
|
|
584
|
+
"is_multivalue": false,
|
|
585
|
+
"solr_fields": { "return": "authors_count", "filter": "authors_count" }
|
|
586
|
+
},
|
|
587
|
+
"category_rcdc": {
|
|
588
|
+
"type": "categories",
|
|
589
|
+
"description": "`Research, Condition, and Disease Categorization <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
590
|
+
"long_description": null,
|
|
591
|
+
"is_entity": true,
|
|
592
|
+
"is_filter": true,
|
|
593
|
+
"is_facet": false,
|
|
594
|
+
"is_multivalue": true,
|
|
595
|
+
"solr_fields": { "return": "rcdc_2023", "filter": "rcdc_2023" }
|
|
596
|
+
},
|
|
597
|
+
"category_bra": {
|
|
598
|
+
"type": "categories",
|
|
599
|
+
"description": "`Broad Research Areas <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
600
|
+
"long_description": null,
|
|
601
|
+
"is_entity": true,
|
|
602
|
+
"is_filter": true,
|
|
603
|
+
"is_facet": false,
|
|
604
|
+
"is_multivalue": true,
|
|
605
|
+
"solr_fields": { "return": "bra_2020", "filter": "bra_2020" }
|
|
606
|
+
},
|
|
607
|
+
"source_title": {
|
|
608
|
+
"type": "source_titles",
|
|
609
|
+
"description": "Source Title for the Publication.",
|
|
610
|
+
"long_description": null,
|
|
611
|
+
"is_entity": true,
|
|
612
|
+
"is_filter": true,
|
|
613
|
+
"is_facet": false,
|
|
614
|
+
"is_multivalue": false,
|
|
615
|
+
"solr_fields": { "return": "source_title_id", "filter": "source_title_id" }
|
|
616
|
+
},
|
|
617
|
+
"subtitles": {
|
|
618
|
+
"type": "string",
|
|
619
|
+
"description": "Subtitles of a publication (when available).",
|
|
620
|
+
"long_description": null,
|
|
621
|
+
"is_entity": false,
|
|
622
|
+
"is_filter": false,
|
|
623
|
+
"is_facet": false,
|
|
624
|
+
"is_multivalue": true,
|
|
625
|
+
"solr_fields": { "return": "sub_titles", "filter": "sub_titles" }
|
|
626
|
+
},
|
|
627
|
+
"category_for_2020": {
|
|
628
|
+
"type": "categories",
|
|
629
|
+
"description": "`ANZSRC Fields of Research classification <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
630
|
+
"long_description": null,
|
|
631
|
+
"is_entity": true,
|
|
632
|
+
"is_filter": true,
|
|
633
|
+
"is_facet": false,
|
|
634
|
+
"is_multivalue": true,
|
|
635
|
+
"solr_fields": { "return": "for_2020_2022", "filter": "for_2020_2022" }
|
|
636
|
+
},
|
|
637
|
+
"issn": {
|
|
638
|
+
"type": "string",
|
|
639
|
+
"description": "International Standard Serial Number",
|
|
640
|
+
"long_description": null,
|
|
641
|
+
"is_entity": false,
|
|
642
|
+
"is_filter": true,
|
|
643
|
+
"is_facet": false,
|
|
644
|
+
"is_multivalue": true,
|
|
645
|
+
"solr_fields": { "return": "issn", "filter": "issn" }
|
|
646
|
+
},
|
|
647
|
+
"researchers": {
|
|
648
|
+
"type": "researchers",
|
|
649
|
+
"description": "Researcher IDs matched to the publication's authors list. (note: this returns only the disambiguated authors of a publication; in order to get the full authors list, the field `authors` should be used). This field supports :ref:`filter-functions`: ``count``.",
|
|
650
|
+
"long_description": null,
|
|
651
|
+
"is_entity": true,
|
|
652
|
+
"is_filter": true,
|
|
653
|
+
"is_facet": false,
|
|
654
|
+
"is_multivalue": true,
|
|
655
|
+
"solr_fields": { "return": "researcher_dim_id", "filter": "researcher_dim_id" }
|
|
656
|
+
},
|
|
657
|
+
"altmetric": {
|
|
658
|
+
"type": "float",
|
|
659
|
+
"description": "Altmetric Attention Score.",
|
|
660
|
+
"long_description": null,
|
|
661
|
+
"is_entity": false,
|
|
662
|
+
"is_filter": true,
|
|
663
|
+
"is_facet": false,
|
|
664
|
+
"is_multivalue": false,
|
|
665
|
+
"solr_fields": { "return": "altmetric", "filter": "altmetric" }
|
|
666
|
+
},
|
|
667
|
+
"publisher": {
|
|
668
|
+
"type": "string",
|
|
669
|
+
"description": "Name of the publisher as a string.",
|
|
670
|
+
"long_description": null,
|
|
671
|
+
"is_entity": false,
|
|
672
|
+
"is_filter": true,
|
|
673
|
+
"is_facet": false,
|
|
674
|
+
"is_multivalue": false,
|
|
675
|
+
"solr_fields": { "return": "publisher", "filter": "publisher_search" }
|
|
676
|
+
},
|
|
677
|
+
"book_doi": {
|
|
678
|
+
"type": "string",
|
|
679
|
+
"description": "The DOI of the book a chapter belongs to (note: this field is available only for chapters).",
|
|
680
|
+
"long_description": null,
|
|
681
|
+
"is_entity": false,
|
|
682
|
+
"is_filter": true,
|
|
683
|
+
"is_facet": false,
|
|
684
|
+
"is_multivalue": false,
|
|
685
|
+
"solr_fields": { "return": "book_doi", "filter": "book_doi" }
|
|
686
|
+
},
|
|
687
|
+
"acknowledgements": {
|
|
688
|
+
"type": "string",
|
|
689
|
+
"description": "The acknowledgements section text as found in the source document.",
|
|
690
|
+
"long_description": null,
|
|
691
|
+
"is_entity": false,
|
|
692
|
+
"is_filter": false,
|
|
693
|
+
"is_facet": false,
|
|
694
|
+
"is_multivalue": false,
|
|
695
|
+
"solr_fields": { "return": "acknowledgements", "filter": "acknowledgements" }
|
|
696
|
+
}
|
|
697
|
+
},
|
|
698
|
+
"fieldsets": ["basics", "extras", "book", "categories"],
|
|
699
|
+
"metrics": {
|
|
700
|
+
"count": { "name": "count", "description": "Total count" },
|
|
701
|
+
"altmetric_median": {
|
|
702
|
+
"name": "altmetric_median",
|
|
703
|
+
"description": "Median Altmetric Attention Score"
|
|
704
|
+
},
|
|
705
|
+
"altmetric_avg": {
|
|
706
|
+
"name": "altmetric_avg",
|
|
707
|
+
"description": "Altmetric Attention Score mean"
|
|
708
|
+
},
|
|
709
|
+
"citations_total": {
|
|
710
|
+
"name": "citations_total",
|
|
711
|
+
"description": "Aggregated number of citations"
|
|
712
|
+
},
|
|
713
|
+
"citations_avg": { "name": "citations_avg", "description": "Arithmetic mean of citations" },
|
|
714
|
+
"citations_median": { "name": "citations_median", "description": "Median of citations" },
|
|
715
|
+
"recent_citations_total": {
|
|
716
|
+
"name": "recent_citations_total",
|
|
717
|
+
"description": "For a given article, in a given year, the number of citations accrued in the last two year period. Single value stored per document, year window rolls over in July."
|
|
718
|
+
},
|
|
719
|
+
"rcr_avg": {
|
|
720
|
+
"name": "rcr_avg",
|
|
721
|
+
"description": "Arithmetic mean of `relative_citation_ratio` field."
|
|
722
|
+
},
|
|
723
|
+
"fcr_gavg": {
|
|
724
|
+
"name": "fcr_gavg",
|
|
725
|
+
"description": "Geometric mean of `field_citation_ratio` field (note: This field cannot be used for sorting results)."
|
|
726
|
+
}
|
|
727
|
+
},
|
|
728
|
+
"search_fields": [
|
|
729
|
+
"title_only",
|
|
730
|
+
"terms",
|
|
731
|
+
"authors",
|
|
732
|
+
"title_abstract_only",
|
|
733
|
+
"full_data",
|
|
734
|
+
"full_data_exact",
|
|
735
|
+
"acknowledgements",
|
|
736
|
+
"concepts"
|
|
737
|
+
]
|
|
738
|
+
},
|
|
739
|
+
"grants": {
|
|
740
|
+
"fields": {
|
|
741
|
+
"end_date": {
|
|
742
|
+
"type": "date",
|
|
743
|
+
"description": "Date when the grant ends.",
|
|
744
|
+
"long_description": null,
|
|
745
|
+
"is_entity": false,
|
|
746
|
+
"is_filter": true,
|
|
747
|
+
"is_facet": false,
|
|
748
|
+
"is_multivalue": false,
|
|
749
|
+
"solr_fields": { "return": "end_date", "filter": "end_date" }
|
|
750
|
+
},
|
|
751
|
+
"language": {
|
|
752
|
+
"type": "string",
|
|
753
|
+
"description": "Grant original language, as ISO 639-1 language codes.",
|
|
754
|
+
"long_description": null,
|
|
755
|
+
"is_entity": false,
|
|
756
|
+
"is_filter": true,
|
|
757
|
+
"is_facet": false,
|
|
758
|
+
"is_multivalue": false,
|
|
759
|
+
"solr_fields": { "return": "language", "filter": "language" }
|
|
760
|
+
},
|
|
761
|
+
"funding_currency": {
|
|
762
|
+
"type": "string",
|
|
763
|
+
"description": "Original funding currency.",
|
|
764
|
+
"long_description": null,
|
|
765
|
+
"is_entity": false,
|
|
766
|
+
"is_filter": true,
|
|
767
|
+
"is_facet": false,
|
|
768
|
+
"is_multivalue": false,
|
|
769
|
+
"solr_fields": { "return": "funding_currency", "filter": "funding_currency" }
|
|
770
|
+
},
|
|
771
|
+
"funders": {
|
|
772
|
+
"type": "organizations",
|
|
773
|
+
"description": "The organisation funding the grant. This is normally a GRID organisation, but in very few cases a Dimensions funder ID is used.",
|
|
774
|
+
"long_description": null,
|
|
775
|
+
"is_entity": true,
|
|
776
|
+
"is_filter": true,
|
|
777
|
+
"is_facet": false,
|
|
778
|
+
"is_multivalue": true,
|
|
779
|
+
"solr_fields": { "return": "funding_org_id", "filter": "funding_org_id" }
|
|
780
|
+
},
|
|
781
|
+
"funder_orgs": {
|
|
782
|
+
"type": "organizations",
|
|
783
|
+
"description": "GRID organisations funding the grant.",
|
|
784
|
+
"long_description": null,
|
|
785
|
+
"is_entity": true,
|
|
786
|
+
"is_filter": true,
|
|
787
|
+
"is_facet": false,
|
|
788
|
+
"is_multivalue": true,
|
|
789
|
+
"solr_fields": { "return": "funding_org_id", "filter": "funding_org_id" }
|
|
790
|
+
},
|
|
791
|
+
"funder_org_name": {
|
|
792
|
+
"type": "string",
|
|
793
|
+
"description": "Name of funding organisation.",
|
|
794
|
+
"long_description": null,
|
|
795
|
+
"is_entity": false,
|
|
796
|
+
"is_filter": true,
|
|
797
|
+
"is_facet": true,
|
|
798
|
+
"is_multivalue": false,
|
|
799
|
+
"solr_fields": { "return": "funding_org_name", "filter": "funding_org_name" }
|
|
800
|
+
},
|
|
801
|
+
"category_hrcs_hc": {
|
|
802
|
+
"type": "categories",
|
|
803
|
+
"description": "`HRCS - Health Categories <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_ .",
|
|
804
|
+
"long_description": null,
|
|
805
|
+
"is_entity": true,
|
|
806
|
+
"is_filter": true,
|
|
807
|
+
"is_facet": false,
|
|
808
|
+
"is_multivalue": true,
|
|
809
|
+
"solr_fields": { "return": "hrcs_hc_2020", "filter": "hrcs_hc_2020" }
|
|
810
|
+
},
|
|
811
|
+
"date_inserted": {
|
|
812
|
+
"type": "date",
|
|
813
|
+
"description": "Date when the record was inserted into Dimensions (note: this field does not support exact match on the data, only range filters e.g. `<=` or `>=`).",
|
|
814
|
+
"long_description": null,
|
|
815
|
+
"is_entity": false,
|
|
816
|
+
"is_filter": true,
|
|
817
|
+
"is_facet": false,
|
|
818
|
+
"is_multivalue": false,
|
|
819
|
+
"solr_fields": { "return": "created_in_dimensions", "filter": "created_in_dimensions" }
|
|
820
|
+
},
|
|
821
|
+
"research_org_cities": {
|
|
822
|
+
"type": "cities",
|
|
823
|
+
"description": "City of the research organisations receiving the grant, expressed as GeoNames id and name.",
|
|
824
|
+
"long_description": null,
|
|
825
|
+
"is_entity": true,
|
|
826
|
+
"is_filter": true,
|
|
827
|
+
"is_facet": false,
|
|
828
|
+
"is_multivalue": true,
|
|
829
|
+
"solr_fields": {
|
|
830
|
+
"return": "research_city_geonames_ids",
|
|
831
|
+
"filter": "research_city_geonames_ids"
|
|
832
|
+
}
|
|
833
|
+
},
|
|
834
|
+
"funding_org_city": {
|
|
835
|
+
"type": "string",
|
|
836
|
+
"description": "City name for funding organisation.",
|
|
837
|
+
"long_description": null,
|
|
838
|
+
"is_entity": false,
|
|
839
|
+
"is_filter": true,
|
|
840
|
+
"is_facet": false,
|
|
841
|
+
"is_multivalue": false,
|
|
842
|
+
"solr_fields": { "return": "funding_org_city", "filter": "funding_org_city" }
|
|
843
|
+
},
|
|
844
|
+
"funding_org_acronym": {
|
|
845
|
+
"type": "string",
|
|
846
|
+
"description": "Acronym for funding organisation.",
|
|
847
|
+
"long_description": null,
|
|
848
|
+
"is_entity": false,
|
|
849
|
+
"is_filter": true,
|
|
850
|
+
"is_facet": false,
|
|
851
|
+
"is_multivalue": false,
|
|
852
|
+
"solr_fields": { "return": "funding_org_acronym", "filter": "funding_org_acronym" }
|
|
853
|
+
},
|
|
854
|
+
"funding_eur": {
|
|
855
|
+
"type": "float",
|
|
856
|
+
"description": "Funding amount awarded in EUR.",
|
|
857
|
+
"long_description": null,
|
|
858
|
+
"is_entity": false,
|
|
859
|
+
"is_filter": true,
|
|
860
|
+
"is_facet": false,
|
|
861
|
+
"is_multivalue": false,
|
|
862
|
+
"solr_fields": { "return": "funding_amount_in_eur", "filter": "funding_amount_in_eur" }
|
|
863
|
+
},
|
|
864
|
+
"research_org_names": {
|
|
865
|
+
"type": "string",
|
|
866
|
+
"description": "Names of organizations investigators are affiliated to. If the organization has a GRID ID, the canonical organization name is used. Otherwise the original affiliation string is used.",
|
|
867
|
+
"long_description": null,
|
|
868
|
+
"is_entity": false,
|
|
869
|
+
"is_filter": true,
|
|
870
|
+
"is_facet": false,
|
|
871
|
+
"is_multivalue": true,
|
|
872
|
+
"solr_fields": { "return": "org_names", "filter": "org_names" }
|
|
873
|
+
},
|
|
874
|
+
"category_icrp_cso": {
|
|
875
|
+
"type": "categories",
|
|
876
|
+
"description": "`ICRP Common Scientific Outline <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
877
|
+
"long_description": null,
|
|
878
|
+
"is_entity": true,
|
|
879
|
+
"is_filter": true,
|
|
880
|
+
"is_facet": false,
|
|
881
|
+
"is_multivalue": true,
|
|
882
|
+
"solr_fields": { "return": "icrp_cso_2020", "filter": "icrp_cso_2020" }
|
|
883
|
+
},
|
|
884
|
+
"research_org_countries": {
|
|
885
|
+
"type": "countries",
|
|
886
|
+
"description": "Country of the research organisations receiving the grant, expressed as GeoNames code and name.",
|
|
887
|
+
"long_description": null,
|
|
888
|
+
"is_entity": true,
|
|
889
|
+
"is_filter": true,
|
|
890
|
+
"is_facet": false,
|
|
891
|
+
"is_multivalue": true,
|
|
892
|
+
"solr_fields": { "return": "research_country_codes", "filter": "research_country_codes" }
|
|
893
|
+
},
|
|
894
|
+
"investigators": {
|
|
895
|
+
"type": "json",
|
|
896
|
+
"description": "Additional details about investigators, including affiliations and roles e.g. 'PI' or 'Co-PI' (note: if the investigator has a Dimensions researcher ID, that is returned as well).",
|
|
897
|
+
"long_description": "Returned objects contain: ``id``, ``first_name``, ``middle_name``, ``last_name``, ``role``, ``affiliations``\n \n For example:\n\n .. code-block:: json\n\n {\n \"investigator_details\":[\n {\n \"id\":\"ur.012516501745.79\",\n \"first_name\":\"O.\",\n \"middle_name\":\"\",\n \"last_name\":\"Mitas\",\n \"role\":\"PI\",\n \"affiliations\":[\n {\n \"id\":\"grid.5477.1\",\n \"name\":\"Breda University of Applied Sciences\",\n \"city\":null,\n \"city_id\":\"2745912\",\n \"state\":null,\n \"state_code\":null,\n \"country\":null,\n \"country_code\":\"NL\"\n }\n ]\n }\n ]\n }",
|
|
898
|
+
"is_entity": false,
|
|
899
|
+
"is_filter": true,
|
|
900
|
+
"is_facet": false,
|
|
901
|
+
"is_multivalue": false,
|
|
902
|
+
"solr_fields": { "return": "researcher_details", "filter": "researcher_list" }
|
|
903
|
+
},
|
|
904
|
+
"grant_number": {
|
|
905
|
+
"type": "string",
|
|
906
|
+
"description": "Grant identifier, as provided by the source (e.g., funder, aggregator) the grant was derived from.",
|
|
907
|
+
"long_description": null,
|
|
908
|
+
"is_entity": false,
|
|
909
|
+
"is_filter": true,
|
|
910
|
+
"is_facet": false,
|
|
911
|
+
"is_multivalue": false,
|
|
912
|
+
"solr_fields": { "return": "project_num", "filter": "project_num" }
|
|
913
|
+
},
|
|
914
|
+
"concepts_scores": {
|
|
915
|
+
"type": "json",
|
|
916
|
+
"description": "Relevancy scores for `concepts`.",
|
|
917
|
+
"long_description": "Returned objects contain: ``concept``, ``relevance``.\n \n For example:\n \n .. code-block:: json\n \n {\n \"concepts_scores\": [\n {\n \"concept\": \"professional relations\",\n \"relevance\": 0.08789352253426701\n },\n {\n \"concept\": \"relation\",\n \"relevance\": 0.062333122509877006\n },\n {\n \"concept\": \"representation\",\n \"relevance\": 0.025851134800039\n },\n {\n \"concept\": \"skald\",\n \"relevance\": 6.984149644517923e-05\n },\n {\n \"concept\": \"Representations of Skalds\",\n \"relevance\": 0.0\n },\n {\n \"concept\": \"Sagas 1\",\n \"relevance\": 0.0\n }\n ]\n }",
|
|
918
|
+
"is_entity": false,
|
|
919
|
+
"is_filter": true,
|
|
920
|
+
"is_facet": false,
|
|
921
|
+
"is_multivalue": false,
|
|
922
|
+
"solr_fields": { "return": "terms_v6", "filter": "phrases_search_v6" }
|
|
923
|
+
},
|
|
924
|
+
"linkout": {
|
|
925
|
+
"type": "string",
|
|
926
|
+
"description": "Original URL for the grant.",
|
|
927
|
+
"long_description": null,
|
|
928
|
+
"is_entity": false,
|
|
929
|
+
"is_filter": false,
|
|
930
|
+
"is_facet": false,
|
|
931
|
+
"is_multivalue": false,
|
|
932
|
+
"solr_fields": { "return": "linkout", "filter": "linkout" }
|
|
933
|
+
},
|
|
934
|
+
"category_hra": {
|
|
935
|
+
"type": "categories",
|
|
936
|
+
"description": "`Health Research Areas <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
937
|
+
"long_description": null,
|
|
938
|
+
"is_entity": true,
|
|
939
|
+
"is_filter": true,
|
|
940
|
+
"is_facet": false,
|
|
941
|
+
"is_multivalue": true,
|
|
942
|
+
"solr_fields": { "return": "hra", "filter": "hra" }
|
|
943
|
+
},
|
|
944
|
+
"dimensions_url": {
|
|
945
|
+
"type": "string",
|
|
946
|
+
"description": "Link pointing to the Dimensions web application",
|
|
947
|
+
"long_description": null,
|
|
948
|
+
"is_entity": false,
|
|
949
|
+
"is_filter": false,
|
|
950
|
+
"is_facet": false,
|
|
951
|
+
"is_multivalue": false,
|
|
952
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
953
|
+
},
|
|
954
|
+
"start_year": {
|
|
955
|
+
"type": "integer",
|
|
956
|
+
"description": "Year when the grant starts.",
|
|
957
|
+
"long_description": null,
|
|
958
|
+
"is_entity": false,
|
|
959
|
+
"is_filter": true,
|
|
960
|
+
"is_facet": false,
|
|
961
|
+
"is_multivalue": false,
|
|
962
|
+
"solr_fields": { "return": "start_year", "filter": "start_year" }
|
|
963
|
+
},
|
|
964
|
+
"funding_usd": {
|
|
965
|
+
"type": "float",
|
|
966
|
+
"description": "Funding amount awarded in USD.",
|
|
967
|
+
"long_description": null,
|
|
968
|
+
"is_entity": false,
|
|
969
|
+
"is_filter": true,
|
|
970
|
+
"is_facet": false,
|
|
971
|
+
"is_multivalue": false,
|
|
972
|
+
"solr_fields": { "return": "funding_amount_in_usd", "filter": "funding_amount_in_usd" }
|
|
973
|
+
},
|
|
974
|
+
"funding_org_name": {
|
|
975
|
+
"type": "string",
|
|
976
|
+
"description": "Name of funding organisation.",
|
|
977
|
+
"long_description": null,
|
|
978
|
+
"is_entity": false,
|
|
979
|
+
"is_filter": true,
|
|
980
|
+
"is_facet": false,
|
|
981
|
+
"is_multivalue": false,
|
|
982
|
+
"solr_fields": { "return": "funding_org_name", "filter": "funding_org_name" }
|
|
983
|
+
},
|
|
984
|
+
"category_for": {
|
|
985
|
+
"type": "categories",
|
|
986
|
+
"description": "ANZSRC Fields of Research classification (alias for most recent version).",
|
|
987
|
+
"long_description": null,
|
|
988
|
+
"is_entity": true,
|
|
989
|
+
"is_filter": true,
|
|
990
|
+
"is_facet": false,
|
|
991
|
+
"is_multivalue": true,
|
|
992
|
+
"solr_fields": { "return": "for_2020_2022", "filter": "for_2020_2022" }
|
|
993
|
+
},
|
|
994
|
+
"abstract": {
|
|
995
|
+
"type": "string",
|
|
996
|
+
"description": "Abstract or summary from a grant proposal.",
|
|
997
|
+
"long_description": null,
|
|
998
|
+
"is_entity": false,
|
|
999
|
+
"is_filter": false,
|
|
1000
|
+
"is_facet": false,
|
|
1001
|
+
"is_multivalue": false,
|
|
1002
|
+
"solr_fields": { "return": "abstract", "filter": "abstract" }
|
|
1003
|
+
},
|
|
1004
|
+
"title": {
|
|
1005
|
+
"type": "string",
|
|
1006
|
+
"description": "Title of the grant in English (if the grant language is not English, this field contains a translation of the title).",
|
|
1007
|
+
"long_description": null,
|
|
1008
|
+
"is_entity": false,
|
|
1009
|
+
"is_filter": false,
|
|
1010
|
+
"is_facet": false,
|
|
1011
|
+
"is_multivalue": false,
|
|
1012
|
+
"solr_fields": { "return": "title", "filter": "title" }
|
|
1013
|
+
},
|
|
1014
|
+
"id": {
|
|
1015
|
+
"type": "string",
|
|
1016
|
+
"description": "Dimensions grant ID.",
|
|
1017
|
+
"long_description": null,
|
|
1018
|
+
"is_entity": false,
|
|
1019
|
+
"is_filter": true,
|
|
1020
|
+
"is_facet": false,
|
|
1021
|
+
"is_multivalue": false,
|
|
1022
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
1023
|
+
},
|
|
1024
|
+
"category_sdg": {
|
|
1025
|
+
"type": "categories",
|
|
1026
|
+
"description": "SDG - Sustainable Development Goals",
|
|
1027
|
+
"long_description": null,
|
|
1028
|
+
"is_entity": true,
|
|
1029
|
+
"is_filter": true,
|
|
1030
|
+
"is_facet": false,
|
|
1031
|
+
"is_multivalue": true,
|
|
1032
|
+
"solr_fields": { "return": "sdg_2021", "filter": "sdg_2021" }
|
|
1033
|
+
},
|
|
1034
|
+
"research_orgs": {
|
|
1035
|
+
"type": "organizations",
|
|
1036
|
+
"description": "GRID organisations receiving the grant (note: identifiers are automatically extracted from the source text and can be missing in some cases).",
|
|
1037
|
+
"long_description": null,
|
|
1038
|
+
"is_entity": true,
|
|
1039
|
+
"is_filter": true,
|
|
1040
|
+
"is_facet": false,
|
|
1041
|
+
"is_multivalue": true,
|
|
1042
|
+
"solr_fields": { "return": "research_org_id", "filter": "research_org_id" }
|
|
1043
|
+
},
|
|
1044
|
+
"category_uoa": {
|
|
1045
|
+
"type": "categories",
|
|
1046
|
+
"description": "`Units of Assessment <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
1047
|
+
"long_description": null,
|
|
1048
|
+
"is_entity": true,
|
|
1049
|
+
"is_filter": true,
|
|
1050
|
+
"is_facet": false,
|
|
1051
|
+
"is_multivalue": true,
|
|
1052
|
+
"solr_fields": { "return": "uoa_2023", "filter": "uoa_2023" }
|
|
1053
|
+
},
|
|
1054
|
+
"funding_chf": {
|
|
1055
|
+
"type": "float",
|
|
1056
|
+
"description": "Funding amount awarded in CHF.",
|
|
1057
|
+
"long_description": null,
|
|
1058
|
+
"is_entity": false,
|
|
1059
|
+
"is_filter": true,
|
|
1060
|
+
"is_facet": false,
|
|
1061
|
+
"is_multivalue": false,
|
|
1062
|
+
"solr_fields": { "return": "funding_amount_in_chf", "filter": "funding_amount_in_chf" }
|
|
1063
|
+
},
|
|
1064
|
+
"funding_jpy": {
|
|
1065
|
+
"type": "float",
|
|
1066
|
+
"description": "Funding amount awarded in JPY.",
|
|
1067
|
+
"long_description": null,
|
|
1068
|
+
"is_entity": false,
|
|
1069
|
+
"is_filter": true,
|
|
1070
|
+
"is_facet": false,
|
|
1071
|
+
"is_multivalue": false,
|
|
1072
|
+
"solr_fields": { "return": "funding_amount_in_jpy", "filter": "funding_amount_in_jpy" }
|
|
1073
|
+
},
|
|
1074
|
+
"foa_number": {
|
|
1075
|
+
"type": "string",
|
|
1076
|
+
"description": "The funding opportunity announcement (FOA) number, where available e.g. for grants from the US National Institute of Health (NIH) or from the National Science Foundation (NSF).",
|
|
1077
|
+
"long_description": null,
|
|
1078
|
+
"is_entity": false,
|
|
1079
|
+
"is_filter": true,
|
|
1080
|
+
"is_facet": false,
|
|
1081
|
+
"is_multivalue": false,
|
|
1082
|
+
"solr_fields": { "return": "foa_number", "filter": "foa_number" }
|
|
1083
|
+
},
|
|
1084
|
+
"category_icrp_ct": {
|
|
1085
|
+
"type": "categories",
|
|
1086
|
+
"description": "`ICRP Cancer Types <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
1087
|
+
"long_description": null,
|
|
1088
|
+
"is_entity": true,
|
|
1089
|
+
"is_filter": true,
|
|
1090
|
+
"is_facet": false,
|
|
1091
|
+
"is_multivalue": true,
|
|
1092
|
+
"solr_fields": { "return": "icrp_ct_2020", "filter": "icrp_ct_2020" }
|
|
1093
|
+
},
|
|
1094
|
+
"category_hrcs_rac": {
|
|
1095
|
+
"type": "categories",
|
|
1096
|
+
"description": "`HRCS \u2013 Research Activity Codes <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_ .",
|
|
1097
|
+
"long_description": null,
|
|
1098
|
+
"is_entity": true,
|
|
1099
|
+
"is_filter": true,
|
|
1100
|
+
"is_facet": false,
|
|
1101
|
+
"is_multivalue": true,
|
|
1102
|
+
"solr_fields": { "return": "hrcs_rac_2020", "filter": "hrcs_rac_2020" }
|
|
1103
|
+
},
|
|
1104
|
+
"funding_cad": {
|
|
1105
|
+
"type": "float",
|
|
1106
|
+
"description": "Funding amount awarded in CAD.",
|
|
1107
|
+
"long_description": null,
|
|
1108
|
+
"is_entity": false,
|
|
1109
|
+
"is_filter": true,
|
|
1110
|
+
"is_facet": false,
|
|
1111
|
+
"is_multivalue": false,
|
|
1112
|
+
"solr_fields": { "return": "funding_amount_in_cad", "filter": "funding_amount_in_cad" }
|
|
1113
|
+
},
|
|
1114
|
+
"start_date": {
|
|
1115
|
+
"type": "date",
|
|
1116
|
+
"description": "Date when the grant starts, in the format 'YYYY-MM-DD'.",
|
|
1117
|
+
"long_description": null,
|
|
1118
|
+
"is_entity": false,
|
|
1119
|
+
"is_filter": true,
|
|
1120
|
+
"is_facet": false,
|
|
1121
|
+
"is_multivalue": false,
|
|
1122
|
+
"solr_fields": { "return": "start_date", "filter": "start_date" }
|
|
1123
|
+
},
|
|
1124
|
+
"concepts": {
|
|
1125
|
+
"type": "json",
|
|
1126
|
+
"description": "Concepts describing the main topics of a publication (note: automatically derived from the publication text using machine learning).",
|
|
1127
|
+
"long_description": null,
|
|
1128
|
+
"is_entity": false,
|
|
1129
|
+
"is_filter": true,
|
|
1130
|
+
"is_facet": false,
|
|
1131
|
+
"is_multivalue": false,
|
|
1132
|
+
"solr_fields": { "return": "terms_v6", "filter": "phrases_search_v6" }
|
|
1133
|
+
},
|
|
1134
|
+
"funder_countries": {
|
|
1135
|
+
"type": "countries",
|
|
1136
|
+
"description": "The country linked to the organisation funding the grant, expressed as GeoNames codes.",
|
|
1137
|
+
"long_description": null,
|
|
1138
|
+
"is_entity": true,
|
|
1139
|
+
"is_filter": true,
|
|
1140
|
+
"is_facet": false,
|
|
1141
|
+
"is_multivalue": true,
|
|
1142
|
+
"solr_fields": { "return": "funding_country_codes", "filter": "funding_country_codes" }
|
|
1143
|
+
},
|
|
1144
|
+
"funding_nzd": {
|
|
1145
|
+
"type": "float",
|
|
1146
|
+
"description": "Funding amount awarded in NZD.",
|
|
1147
|
+
"long_description": null,
|
|
1148
|
+
"is_entity": false,
|
|
1149
|
+
"is_filter": true,
|
|
1150
|
+
"is_facet": false,
|
|
1151
|
+
"is_multivalue": false,
|
|
1152
|
+
"solr_fields": { "return": "funding_amount_in_nzd", "filter": "funding_amount_in_nzd" }
|
|
1153
|
+
},
|
|
1154
|
+
"research_org_state_codes": {
|
|
1155
|
+
"type": "states",
|
|
1156
|
+
"description": "State of the organisations receiving the grant, expressed as GeoNames codes (ISO\u200c-3166-2).",
|
|
1157
|
+
"long_description": null,
|
|
1158
|
+
"is_entity": true,
|
|
1159
|
+
"is_filter": true,
|
|
1160
|
+
"is_facet": false,
|
|
1161
|
+
"is_multivalue": true,
|
|
1162
|
+
"solr_fields": { "return": "research_state_codes", "filter": "research_state_codes" }
|
|
1163
|
+
},
|
|
1164
|
+
"language_title": {
|
|
1165
|
+
"type": "string",
|
|
1166
|
+
"description": "ISO 639-1 language code for the original grant title.",
|
|
1167
|
+
"long_description": null,
|
|
1168
|
+
"is_entity": false,
|
|
1169
|
+
"is_filter": true,
|
|
1170
|
+
"is_facet": false,
|
|
1171
|
+
"is_multivalue": false,
|
|
1172
|
+
"solr_fields": { "return": "language_title", "filter": "language_title" }
|
|
1173
|
+
},
|
|
1174
|
+
"active_year": {
|
|
1175
|
+
"type": "integer",
|
|
1176
|
+
"description": "List of active years for a grant.",
|
|
1177
|
+
"long_description": null,
|
|
1178
|
+
"is_entity": false,
|
|
1179
|
+
"is_filter": true,
|
|
1180
|
+
"is_facet": false,
|
|
1181
|
+
"is_multivalue": true,
|
|
1182
|
+
"solr_fields": { "return": "active_year", "filter": "active_year" }
|
|
1183
|
+
},
|
|
1184
|
+
"category_rcdc": {
|
|
1185
|
+
"type": "categories",
|
|
1186
|
+
"description": "`Research, Condition, and Disease Categorization <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_ .",
|
|
1187
|
+
"long_description": null,
|
|
1188
|
+
"is_entity": true,
|
|
1189
|
+
"is_filter": true,
|
|
1190
|
+
"is_facet": false,
|
|
1191
|
+
"is_multivalue": true,
|
|
1192
|
+
"solr_fields": { "return": "rcdc_2023", "filter": "rcdc_2023" }
|
|
1193
|
+
},
|
|
1194
|
+
"category_bra": {
|
|
1195
|
+
"type": "categories",
|
|
1196
|
+
"description": "`Broad Research Areas <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
1197
|
+
"long_description": null,
|
|
1198
|
+
"is_entity": true,
|
|
1199
|
+
"is_filter": true,
|
|
1200
|
+
"is_facet": false,
|
|
1201
|
+
"is_multivalue": true,
|
|
1202
|
+
"solr_fields": { "return": "bra_2020", "filter": "bra_2020" }
|
|
1203
|
+
},
|
|
1204
|
+
"category_for_2020": {
|
|
1205
|
+
"type": "categories",
|
|
1206
|
+
"description": "`ANZSRC Fields of Research classification <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
1207
|
+
"long_description": null,
|
|
1208
|
+
"is_entity": true,
|
|
1209
|
+
"is_filter": true,
|
|
1210
|
+
"is_facet": false,
|
|
1211
|
+
"is_multivalue": true,
|
|
1212
|
+
"solr_fields": { "return": "for_2020_2022", "filter": "for_2020_2022" }
|
|
1213
|
+
},
|
|
1214
|
+
"funding_aud": {
|
|
1215
|
+
"type": "float",
|
|
1216
|
+
"description": "Funding amount awarded in AUD.",
|
|
1217
|
+
"long_description": null,
|
|
1218
|
+
"is_entity": false,
|
|
1219
|
+
"is_filter": true,
|
|
1220
|
+
"is_facet": false,
|
|
1221
|
+
"is_multivalue": false,
|
|
1222
|
+
"solr_fields": { "return": "funding_amount_in_aud", "filter": "funding_amount_in_aud" }
|
|
1223
|
+
},
|
|
1224
|
+
"researchers": {
|
|
1225
|
+
"type": "researchers",
|
|
1226
|
+
"description": "Dimensions researchers IDs associated to the grant.",
|
|
1227
|
+
"long_description": null,
|
|
1228
|
+
"is_entity": true,
|
|
1229
|
+
"is_filter": true,
|
|
1230
|
+
"is_facet": false,
|
|
1231
|
+
"is_multivalue": true,
|
|
1232
|
+
"solr_fields": { "return": "researcher_dim_id", "filter": "researcher_dim_id" }
|
|
1233
|
+
},
|
|
1234
|
+
"original_title": {
|
|
1235
|
+
"type": "string",
|
|
1236
|
+
"description": "Title of the grant in its original language.",
|
|
1237
|
+
"long_description": null,
|
|
1238
|
+
"is_entity": false,
|
|
1239
|
+
"is_filter": false,
|
|
1240
|
+
"is_facet": false,
|
|
1241
|
+
"is_multivalue": false,
|
|
1242
|
+
"solr_fields": { "return": "title_original", "filter": "title_original" }
|
|
1243
|
+
},
|
|
1244
|
+
"funding_gbp": {
|
|
1245
|
+
"type": "float",
|
|
1246
|
+
"description": "Funding amount awarded in GBP.",
|
|
1247
|
+
"long_description": null,
|
|
1248
|
+
"is_entity": false,
|
|
1249
|
+
"is_filter": true,
|
|
1250
|
+
"is_facet": false,
|
|
1251
|
+
"is_multivalue": false,
|
|
1252
|
+
"solr_fields": { "return": "funding_amount_in_gbp", "filter": "funding_amount_in_gbp" }
|
|
1253
|
+
}
|
|
1254
|
+
},
|
|
1255
|
+
"fieldsets": ["basics", "extras", "categories"],
|
|
1256
|
+
"metrics": {
|
|
1257
|
+
"count": { "name": "count", "description": "Total count" },
|
|
1258
|
+
"funding": { "name": "funding", "description": "Total funding amount, in USD." }
|
|
1259
|
+
},
|
|
1260
|
+
"search_fields": [
|
|
1261
|
+
"title_only",
|
|
1262
|
+
"investigators",
|
|
1263
|
+
"title_abstract_only",
|
|
1264
|
+
"full_data",
|
|
1265
|
+
"concepts"
|
|
1266
|
+
]
|
|
1267
|
+
},
|
|
1268
|
+
"patents": {
|
|
1269
|
+
"fields": {
|
|
1270
|
+
"granted_date": {
|
|
1271
|
+
"type": "date",
|
|
1272
|
+
"description": "The date on which the official body grants the patent.",
|
|
1273
|
+
"long_description": null,
|
|
1274
|
+
"is_entity": false,
|
|
1275
|
+
"is_filter": true,
|
|
1276
|
+
"is_facet": false,
|
|
1277
|
+
"is_multivalue": false,
|
|
1278
|
+
"solr_fields": { "return": "granted_date", "filter": "granted_date" }
|
|
1279
|
+
},
|
|
1280
|
+
"funders": {
|
|
1281
|
+
"type": "organizations",
|
|
1282
|
+
"description": "GRID organisations funding the patent.",
|
|
1283
|
+
"long_description": null,
|
|
1284
|
+
"is_entity": true,
|
|
1285
|
+
"is_filter": true,
|
|
1286
|
+
"is_facet": false,
|
|
1287
|
+
"is_multivalue": true,
|
|
1288
|
+
"solr_fields": { "return": "funder_grid_ids", "filter": "funder_grid_ids" }
|
|
1289
|
+
},
|
|
1290
|
+
"category_hrcs_hc": {
|
|
1291
|
+
"type": "categories",
|
|
1292
|
+
"description": "`HRCS - Health Categories <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
1293
|
+
"long_description": null,
|
|
1294
|
+
"is_entity": true,
|
|
1295
|
+
"is_filter": true,
|
|
1296
|
+
"is_facet": false,
|
|
1297
|
+
"is_multivalue": true,
|
|
1298
|
+
"solr_fields": { "return": "hrcs_hc_2020", "filter": "hrcs_hc_2020" }
|
|
1299
|
+
},
|
|
1300
|
+
"assignees": {
|
|
1301
|
+
"type": "organizations",
|
|
1302
|
+
"description": "Disambiguated GRID organisations who own or have owned the rights of a patent (note: this is a combination of `current_assignees` and `original_assignees` fields).",
|
|
1303
|
+
"long_description": null,
|
|
1304
|
+
"is_entity": true,
|
|
1305
|
+
"is_filter": true,
|
|
1306
|
+
"is_facet": false,
|
|
1307
|
+
"is_multivalue": true,
|
|
1308
|
+
"solr_fields": { "return": "assignee_grid_ids", "filter": "assignee_grid_ids" }
|
|
1309
|
+
},
|
|
1310
|
+
"date_inserted": {
|
|
1311
|
+
"type": "date",
|
|
1312
|
+
"description": "Date when the record was inserted into Dimensions (note: this field does not support exact match on the data, only range filters e.g. `<=` or `>=`).",
|
|
1313
|
+
"long_description": null,
|
|
1314
|
+
"is_entity": false,
|
|
1315
|
+
"is_filter": true,
|
|
1316
|
+
"is_facet": false,
|
|
1317
|
+
"is_multivalue": false,
|
|
1318
|
+
"solr_fields": { "return": "created_in_dimensions", "filter": "created_in_dimensions" }
|
|
1319
|
+
},
|
|
1320
|
+
"inventors": {
|
|
1321
|
+
"type": "json",
|
|
1322
|
+
"description": "Details of the people who invented the patent.",
|
|
1323
|
+
"long_description": null,
|
|
1324
|
+
"is_entity": false,
|
|
1325
|
+
"is_filter": true,
|
|
1326
|
+
"is_facet": false,
|
|
1327
|
+
"is_multivalue": false,
|
|
1328
|
+
"solr_fields": { "return": "inventors_details", "filter": "inventor_list" }
|
|
1329
|
+
},
|
|
1330
|
+
"additional_filters": {
|
|
1331
|
+
"type": "string",
|
|
1332
|
+
"description": "Additional filters describing the patents, e.g. whether it's about a 'Research Organisation', or it is part of the 'Orange Book'.",
|
|
1333
|
+
"long_description": null,
|
|
1334
|
+
"is_entity": false,
|
|
1335
|
+
"is_filter": true,
|
|
1336
|
+
"is_facet": false,
|
|
1337
|
+
"is_multivalue": true,
|
|
1338
|
+
"solr_fields": { "return": "additional_filters", "filter": "additional_filters" }
|
|
1339
|
+
},
|
|
1340
|
+
"category_icrp_cso": {
|
|
1341
|
+
"type": "categories",
|
|
1342
|
+
"description": "`ICRP Common Scientific Outline <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
1343
|
+
"long_description": null,
|
|
1344
|
+
"is_entity": true,
|
|
1345
|
+
"is_filter": true,
|
|
1346
|
+
"is_facet": false,
|
|
1347
|
+
"is_multivalue": true,
|
|
1348
|
+
"solr_fields": { "return": "icrp_cso_2020", "filter": "icrp_cso_2020" }
|
|
1349
|
+
},
|
|
1350
|
+
"date": {
|
|
1351
|
+
"type": "date",
|
|
1352
|
+
"description": "Date when the patent was filed.",
|
|
1353
|
+
"long_description": null,
|
|
1354
|
+
"is_entity": false,
|
|
1355
|
+
"is_filter": true,
|
|
1356
|
+
"is_facet": false,
|
|
1357
|
+
"is_multivalue": false,
|
|
1358
|
+
"solr_fields": { "return": "filed_date", "filter": "filed_date" }
|
|
1359
|
+
},
|
|
1360
|
+
"associated_grant_ids": {
|
|
1361
|
+
"type": "string",
|
|
1362
|
+
"description": "Dimensions IDs of the grants associated to the patent (see also: :ref:`patents_model` section).",
|
|
1363
|
+
"long_description": null,
|
|
1364
|
+
"is_entity": false,
|
|
1365
|
+
"is_filter": true,
|
|
1366
|
+
"is_facet": false,
|
|
1367
|
+
"is_multivalue": true,
|
|
1368
|
+
"solr_fields": { "return": "grant_ids", "filter": "grant_ids" }
|
|
1369
|
+
},
|
|
1370
|
+
"assignee_names": {
|
|
1371
|
+
"type": "string",
|
|
1372
|
+
"description": "Name of assignees of the patent, as they appear in the original document.",
|
|
1373
|
+
"long_description": null,
|
|
1374
|
+
"is_entity": false,
|
|
1375
|
+
"is_filter": true,
|
|
1376
|
+
"is_facet": false,
|
|
1377
|
+
"is_multivalue": true,
|
|
1378
|
+
"solr_fields": { "return": "assignee_names", "filter": "assignee_names_search" }
|
|
1379
|
+
},
|
|
1380
|
+
"publication_ids": {
|
|
1381
|
+
"type": "string",
|
|
1382
|
+
"description": "Dimensions IDs of the publications related to this patent (see also: :ref:`patents_model` section).",
|
|
1383
|
+
"long_description": null,
|
|
1384
|
+
"is_entity": false,
|
|
1385
|
+
"is_filter": true,
|
|
1386
|
+
"is_facet": false,
|
|
1387
|
+
"is_multivalue": true,
|
|
1388
|
+
"solr_fields": { "return": "publication_ids", "filter": "publication_ids" }
|
|
1389
|
+
},
|
|
1390
|
+
"inventor_names": {
|
|
1391
|
+
"type": "string",
|
|
1392
|
+
"description": "Names of the people who invented the patent.",
|
|
1393
|
+
"long_description": null,
|
|
1394
|
+
"is_entity": false,
|
|
1395
|
+
"is_filter": true,
|
|
1396
|
+
"is_facet": false,
|
|
1397
|
+
"is_multivalue": false,
|
|
1398
|
+
"solr_fields": { "return": "inventor_names", "filter": "inventor_list" }
|
|
1399
|
+
},
|
|
1400
|
+
"assignee_state_codes": {
|
|
1401
|
+
"type": "states",
|
|
1402
|
+
"description": "State of the assignee, expressed using GeoNames (ISO\u200c-3166-2) codes (note: this value is extracted independently from GRID).",
|
|
1403
|
+
"long_description": null,
|
|
1404
|
+
"is_entity": true,
|
|
1405
|
+
"is_filter": true,
|
|
1406
|
+
"is_facet": false,
|
|
1407
|
+
"is_multivalue": true,
|
|
1408
|
+
"solr_fields": { "return": "assignee_state_codes", "filter": "assignee_state_codes" }
|
|
1409
|
+
},
|
|
1410
|
+
"category_hra": {
|
|
1411
|
+
"type": "categories",
|
|
1412
|
+
"description": "`Health Research Areas <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
1413
|
+
"long_description": null,
|
|
1414
|
+
"is_entity": true,
|
|
1415
|
+
"is_filter": true,
|
|
1416
|
+
"is_facet": false,
|
|
1417
|
+
"is_multivalue": true,
|
|
1418
|
+
"solr_fields": { "return": "health_research_areas", "filter": "health_research_areas" }
|
|
1419
|
+
},
|
|
1420
|
+
"publication_date": {
|
|
1421
|
+
"type": "date",
|
|
1422
|
+
"description": "Date of publication of a patent.",
|
|
1423
|
+
"long_description": null,
|
|
1424
|
+
"is_entity": false,
|
|
1425
|
+
"is_filter": true,
|
|
1426
|
+
"is_facet": false,
|
|
1427
|
+
"is_multivalue": false,
|
|
1428
|
+
"solr_fields": { "return": "publication_date", "filter": "publication_date" }
|
|
1429
|
+
},
|
|
1430
|
+
"filing_status": {
|
|
1431
|
+
"type": "string",
|
|
1432
|
+
"description": "Filing Status of the patent e.g. 'Application' or 'Grant'.",
|
|
1433
|
+
"long_description": null,
|
|
1434
|
+
"is_entity": false,
|
|
1435
|
+
"is_filter": true,
|
|
1436
|
+
"is_facet": false,
|
|
1437
|
+
"is_multivalue": false,
|
|
1438
|
+
"solr_fields": { "return": "filing_status", "filter": "filing_status" }
|
|
1439
|
+
},
|
|
1440
|
+
"dimensions_url": {
|
|
1441
|
+
"type": "string",
|
|
1442
|
+
"description": "Link pointing to the Dimensions web application",
|
|
1443
|
+
"long_description": null,
|
|
1444
|
+
"is_entity": false,
|
|
1445
|
+
"is_filter": false,
|
|
1446
|
+
"is_facet": false,
|
|
1447
|
+
"is_multivalue": false,
|
|
1448
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
1449
|
+
},
|
|
1450
|
+
"expiration_date": {
|
|
1451
|
+
"type": "date",
|
|
1452
|
+
"description": "Date when the patent expires.",
|
|
1453
|
+
"long_description": null,
|
|
1454
|
+
"is_entity": false,
|
|
1455
|
+
"is_filter": true,
|
|
1456
|
+
"is_facet": false,
|
|
1457
|
+
"is_multivalue": false,
|
|
1458
|
+
"solr_fields": { "return": "expiration_date", "filter": "expiration_date" }
|
|
1459
|
+
},
|
|
1460
|
+
"priority_date": {
|
|
1461
|
+
"type": "date",
|
|
1462
|
+
"description": "The earliest filing date in a family of patent applications.",
|
|
1463
|
+
"long_description": null,
|
|
1464
|
+
"is_entity": false,
|
|
1465
|
+
"is_filter": true,
|
|
1466
|
+
"is_facet": false,
|
|
1467
|
+
"is_multivalue": false,
|
|
1468
|
+
"solr_fields": { "return": "priority_date", "filter": "priority_date" }
|
|
1469
|
+
},
|
|
1470
|
+
"original_assignee_names": {
|
|
1471
|
+
"type": "string",
|
|
1472
|
+
"description": "Name of the organisations that first owned the patent, as they appear in the original document.",
|
|
1473
|
+
"long_description": null,
|
|
1474
|
+
"is_entity": false,
|
|
1475
|
+
"is_filter": true,
|
|
1476
|
+
"is_facet": false,
|
|
1477
|
+
"is_multivalue": true,
|
|
1478
|
+
"solr_fields": {
|
|
1479
|
+
"return": "original_assignee_names",
|
|
1480
|
+
"filter": "original_assignee_names"
|
|
1481
|
+
}
|
|
1482
|
+
},
|
|
1483
|
+
"granted_year": {
|
|
1484
|
+
"type": "integer",
|
|
1485
|
+
"description": "The year on which the official body grants the patent.",
|
|
1486
|
+
"long_description": null,
|
|
1487
|
+
"is_entity": false,
|
|
1488
|
+
"is_filter": true,
|
|
1489
|
+
"is_facet": false,
|
|
1490
|
+
"is_multivalue": false,
|
|
1491
|
+
"solr_fields": { "return": "granted_year", "filter": "granted_year" }
|
|
1492
|
+
},
|
|
1493
|
+
"abstract": {
|
|
1494
|
+
"type": "string",
|
|
1495
|
+
"description": "Abstract or description of the patent.",
|
|
1496
|
+
"long_description": null,
|
|
1497
|
+
"is_entity": false,
|
|
1498
|
+
"is_filter": false,
|
|
1499
|
+
"is_facet": false,
|
|
1500
|
+
"is_multivalue": false,
|
|
1501
|
+
"solr_fields": { "return": "abstract", "filter": "abstract" }
|
|
1502
|
+
},
|
|
1503
|
+
"category_for": {
|
|
1504
|
+
"type": "categories",
|
|
1505
|
+
"description": "`ANZSRC Fields of Research classification <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_ (alias for most recent version).",
|
|
1506
|
+
"long_description": null,
|
|
1507
|
+
"is_entity": true,
|
|
1508
|
+
"is_filter": true,
|
|
1509
|
+
"is_facet": false,
|
|
1510
|
+
"is_multivalue": true,
|
|
1511
|
+
"solr_fields": { "return": "for_2020_2022", "filter": "for_2020_2022" }
|
|
1512
|
+
},
|
|
1513
|
+
"title": {
|
|
1514
|
+
"type": "string",
|
|
1515
|
+
"description": "The title of the patent.",
|
|
1516
|
+
"long_description": null,
|
|
1517
|
+
"is_entity": false,
|
|
1518
|
+
"is_filter": false,
|
|
1519
|
+
"is_facet": false,
|
|
1520
|
+
"is_multivalue": false,
|
|
1521
|
+
"solr_fields": { "return": "title", "filter": "title" }
|
|
1522
|
+
},
|
|
1523
|
+
"publications": {
|
|
1524
|
+
"type": "publication_links",
|
|
1525
|
+
"description": "Publication IDs of the publications related to this patent (see also: :ref:`patents_model` section).",
|
|
1526
|
+
"long_description": null,
|
|
1527
|
+
"is_entity": true,
|
|
1528
|
+
"is_filter": true,
|
|
1529
|
+
"is_facet": false,
|
|
1530
|
+
"is_multivalue": true,
|
|
1531
|
+
"solr_fields": { "return": "publication_ids", "filter": "publication_ids" }
|
|
1532
|
+
},
|
|
1533
|
+
"id": {
|
|
1534
|
+
"type": "string",
|
|
1535
|
+
"description": "Dimensions patent ID",
|
|
1536
|
+
"long_description": null,
|
|
1537
|
+
"is_entity": false,
|
|
1538
|
+
"is_filter": true,
|
|
1539
|
+
"is_facet": false,
|
|
1540
|
+
"is_multivalue": false,
|
|
1541
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
1542
|
+
},
|
|
1543
|
+
"current_assignee_names": {
|
|
1544
|
+
"type": "string",
|
|
1545
|
+
"description": "Names of the organisations currently holding the patent, as they appear in the original document.",
|
|
1546
|
+
"long_description": null,
|
|
1547
|
+
"is_entity": false,
|
|
1548
|
+
"is_filter": true,
|
|
1549
|
+
"is_facet": false,
|
|
1550
|
+
"is_multivalue": true,
|
|
1551
|
+
"solr_fields": { "return": "current_assignee_names", "filter": "current_assignee_names" }
|
|
1552
|
+
},
|
|
1553
|
+
"reference_ids": {
|
|
1554
|
+
"type": "string",
|
|
1555
|
+
"description": "Dimensions IDs of the patents which are cited by this patent (see also: :ref:`patents_model` section).",
|
|
1556
|
+
"long_description": null,
|
|
1557
|
+
"is_entity": false,
|
|
1558
|
+
"is_filter": true,
|
|
1559
|
+
"is_facet": false,
|
|
1560
|
+
"is_multivalue": true,
|
|
1561
|
+
"solr_fields": { "return": "citations_ucids", "filter": "citations_ucids" }
|
|
1562
|
+
},
|
|
1563
|
+
"ipcr": {
|
|
1564
|
+
"type": "string",
|
|
1565
|
+
"description": "`International Patent Classification Reform Categorization <https://www.wipo.int/classifications/ipc/en/faq/>`_.",
|
|
1566
|
+
"long_description": null,
|
|
1567
|
+
"is_entity": false,
|
|
1568
|
+
"is_filter": true,
|
|
1569
|
+
"is_facet": false,
|
|
1570
|
+
"is_multivalue": true,
|
|
1571
|
+
"solr_fields": { "return": "ipcr", "filter": "ipcr" }
|
|
1572
|
+
},
|
|
1573
|
+
"current_assignees": {
|
|
1574
|
+
"type": "organizations",
|
|
1575
|
+
"description": "Disambiguated GRID organisations currenlty owning the patent.",
|
|
1576
|
+
"long_description": null,
|
|
1577
|
+
"is_entity": true,
|
|
1578
|
+
"is_filter": true,
|
|
1579
|
+
"is_facet": false,
|
|
1580
|
+
"is_multivalue": true,
|
|
1581
|
+
"solr_fields": {
|
|
1582
|
+
"return": "current_assignee_grid_ids",
|
|
1583
|
+
"filter": "current_assignee_grid_ids"
|
|
1584
|
+
}
|
|
1585
|
+
},
|
|
1586
|
+
"jurisdiction": {
|
|
1587
|
+
"type": "string",
|
|
1588
|
+
"description": "The jurisdiction where the patent was granted, e.g. 'US', 'DE', 'EP'...",
|
|
1589
|
+
"long_description": null,
|
|
1590
|
+
"is_entity": false,
|
|
1591
|
+
"is_filter": true,
|
|
1592
|
+
"is_facet": false,
|
|
1593
|
+
"is_multivalue": false,
|
|
1594
|
+
"solr_fields": { "return": "jurisdiction", "filter": "jurisdiction" }
|
|
1595
|
+
},
|
|
1596
|
+
"category_icrp_ct": {
|
|
1597
|
+
"type": "categories",
|
|
1598
|
+
"description": "`ICRP Cancer Types <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
1599
|
+
"long_description": null,
|
|
1600
|
+
"is_entity": true,
|
|
1601
|
+
"is_filter": true,
|
|
1602
|
+
"is_facet": false,
|
|
1603
|
+
"is_multivalue": true,
|
|
1604
|
+
"solr_fields": { "return": "icrp_ct_2020", "filter": "icrp_ct_2020" }
|
|
1605
|
+
},
|
|
1606
|
+
"category_hrcs_rac": {
|
|
1607
|
+
"type": "categories",
|
|
1608
|
+
"description": "`HRCS \u2013 Research Activity Codes <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
1609
|
+
"long_description": null,
|
|
1610
|
+
"is_entity": true,
|
|
1611
|
+
"is_filter": true,
|
|
1612
|
+
"is_facet": false,
|
|
1613
|
+
"is_multivalue": true,
|
|
1614
|
+
"solr_fields": { "return": "hrcs_rac_2020", "filter": "hrcs_rac_2020" }
|
|
1615
|
+
},
|
|
1616
|
+
"assignee_countries": {
|
|
1617
|
+
"type": "countries",
|
|
1618
|
+
"description": "Country of the assignees of the patent, expressed as GeoNames code and name (note: this value is extracted independently from GRID).",
|
|
1619
|
+
"long_description": null,
|
|
1620
|
+
"is_entity": true,
|
|
1621
|
+
"is_filter": true,
|
|
1622
|
+
"is_facet": false,
|
|
1623
|
+
"is_multivalue": true,
|
|
1624
|
+
"solr_fields": { "return": "assignee_country_codes", "filter": "assignee_country_codes" }
|
|
1625
|
+
},
|
|
1626
|
+
"year": {
|
|
1627
|
+
"type": "integer",
|
|
1628
|
+
"description": "The year the patent was filed.",
|
|
1629
|
+
"long_description": null,
|
|
1630
|
+
"is_entity": false,
|
|
1631
|
+
"is_filter": true,
|
|
1632
|
+
"is_facet": false,
|
|
1633
|
+
"is_multivalue": false,
|
|
1634
|
+
"solr_fields": { "return": "filed_year", "filter": "filed_year" }
|
|
1635
|
+
},
|
|
1636
|
+
"times_cited": {
|
|
1637
|
+
"type": "integer",
|
|
1638
|
+
"description": "The number of times the patent has been cited by other patents.",
|
|
1639
|
+
"long_description": null,
|
|
1640
|
+
"is_entity": false,
|
|
1641
|
+
"is_filter": true,
|
|
1642
|
+
"is_facet": false,
|
|
1643
|
+
"is_multivalue": false,
|
|
1644
|
+
"solr_fields": { "return": "times_cited", "filter": "times_cited" }
|
|
1645
|
+
},
|
|
1646
|
+
"assignee_cities": {
|
|
1647
|
+
"type": "cities",
|
|
1648
|
+
"description": "City of the assignees of the patent, expressed as GeoNames ID and name (note: this value is extracted independently from GRID).",
|
|
1649
|
+
"long_description": null,
|
|
1650
|
+
"is_entity": true,
|
|
1651
|
+
"is_filter": true,
|
|
1652
|
+
"is_facet": false,
|
|
1653
|
+
"is_multivalue": true,
|
|
1654
|
+
"solr_fields": {
|
|
1655
|
+
"return": "assignee_city_geonames_ids",
|
|
1656
|
+
"filter": "assignee_city_geonames_ids"
|
|
1657
|
+
}
|
|
1658
|
+
},
|
|
1659
|
+
"original_assignees": {
|
|
1660
|
+
"type": "organizations",
|
|
1661
|
+
"description": "Disambiguated GRID organisations that first owned the patent.",
|
|
1662
|
+
"long_description": null,
|
|
1663
|
+
"is_entity": true,
|
|
1664
|
+
"is_filter": true,
|
|
1665
|
+
"is_facet": false,
|
|
1666
|
+
"is_multivalue": true,
|
|
1667
|
+
"solr_fields": {
|
|
1668
|
+
"return": "original_assignee_grid_ids",
|
|
1669
|
+
"filter": "original_assignee_grid_ids"
|
|
1670
|
+
}
|
|
1671
|
+
},
|
|
1672
|
+
"publication_year": {
|
|
1673
|
+
"type": "integer",
|
|
1674
|
+
"description": "Year of publication of a patent.",
|
|
1675
|
+
"long_description": null,
|
|
1676
|
+
"is_entity": false,
|
|
1677
|
+
"is_filter": true,
|
|
1678
|
+
"is_facet": false,
|
|
1679
|
+
"is_multivalue": false,
|
|
1680
|
+
"solr_fields": { "return": "pub_year", "filter": "pub_year" }
|
|
1681
|
+
},
|
|
1682
|
+
"priority_year": {
|
|
1683
|
+
"type": "integer",
|
|
1684
|
+
"description": "The filing year of the earliest application of which priority is claimed.",
|
|
1685
|
+
"long_description": null,
|
|
1686
|
+
"is_entity": false,
|
|
1687
|
+
"is_filter": true,
|
|
1688
|
+
"is_facet": false,
|
|
1689
|
+
"is_multivalue": false,
|
|
1690
|
+
"solr_fields": { "return": "priority_year", "filter": "priority_year" }
|
|
1691
|
+
},
|
|
1692
|
+
"funder_countries": {
|
|
1693
|
+
"type": "countries",
|
|
1694
|
+
"description": "The country of the funding organisation (note: currently this information is available only for US patents).",
|
|
1695
|
+
"long_description": null,
|
|
1696
|
+
"is_entity": true,
|
|
1697
|
+
"is_filter": true,
|
|
1698
|
+
"is_facet": false,
|
|
1699
|
+
"is_multivalue": true,
|
|
1700
|
+
"solr_fields": { "return": "funder_country_codes", "filter": "funder_country_codes" }
|
|
1701
|
+
},
|
|
1702
|
+
"legal_status": {
|
|
1703
|
+
"type": "string",
|
|
1704
|
+
"description": "The legal status of the patent, e.g. 'Granted', 'Active', 'Abandoned' etc..",
|
|
1705
|
+
"long_description": null,
|
|
1706
|
+
"is_entity": false,
|
|
1707
|
+
"is_filter": true,
|
|
1708
|
+
"is_facet": false,
|
|
1709
|
+
"is_multivalue": false,
|
|
1710
|
+
"solr_fields": { "return": "status", "filter": "status" }
|
|
1711
|
+
},
|
|
1712
|
+
"cpc": {
|
|
1713
|
+
"type": "string",
|
|
1714
|
+
"description": "`Cooperative Patent Classification Categorization <https://www.epo.org/searching-for-patents/helpful-resources/first-time-here/classification/cpc.html>`_.",
|
|
1715
|
+
"long_description": null,
|
|
1716
|
+
"is_entity": false,
|
|
1717
|
+
"is_filter": true,
|
|
1718
|
+
"is_facet": false,
|
|
1719
|
+
"is_multivalue": true,
|
|
1720
|
+
"solr_fields": { "return": "cpc", "filter": "cpc" }
|
|
1721
|
+
},
|
|
1722
|
+
"category_rcdc": {
|
|
1723
|
+
"type": "categories",
|
|
1724
|
+
"description": "`Research, Condition, and Disease Categorization <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
1725
|
+
"long_description": null,
|
|
1726
|
+
"is_entity": true,
|
|
1727
|
+
"is_filter": true,
|
|
1728
|
+
"is_facet": false,
|
|
1729
|
+
"is_multivalue": true,
|
|
1730
|
+
"solr_fields": { "return": "rcdc_2023", "filter": "rcdc_2023" }
|
|
1731
|
+
},
|
|
1732
|
+
"category_bra": {
|
|
1733
|
+
"type": "categories",
|
|
1734
|
+
"description": "`Broad Research Areas <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
1735
|
+
"long_description": null,
|
|
1736
|
+
"is_entity": true,
|
|
1737
|
+
"is_filter": true,
|
|
1738
|
+
"is_facet": false,
|
|
1739
|
+
"is_multivalue": true,
|
|
1740
|
+
"solr_fields": { "return": "bra_2020", "filter": "bra_2020" }
|
|
1741
|
+
},
|
|
1742
|
+
"category_for_2020": {
|
|
1743
|
+
"type": "categories",
|
|
1744
|
+
"description": "`ANZSRC Fields of Research classification <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
1745
|
+
"long_description": null,
|
|
1746
|
+
"is_entity": true,
|
|
1747
|
+
"is_filter": true,
|
|
1748
|
+
"is_facet": false,
|
|
1749
|
+
"is_multivalue": true,
|
|
1750
|
+
"solr_fields": { "return": "for_2020_2022", "filter": "for_2020_2022" }
|
|
1751
|
+
},
|
|
1752
|
+
"family_id": {
|
|
1753
|
+
"type": "integer",
|
|
1754
|
+
"description": "Identifier of the corresponding `EPO patent family <https://www.epo.org/searching-for-patents/helpful-resources/first-time-here/patent-families/docdb.html>`_.",
|
|
1755
|
+
"long_description": null,
|
|
1756
|
+
"is_entity": false,
|
|
1757
|
+
"is_filter": true,
|
|
1758
|
+
"is_facet": false,
|
|
1759
|
+
"is_multivalue": false,
|
|
1760
|
+
"solr_fields": { "return": "family_id", "filter": "family_id" }
|
|
1761
|
+
},
|
|
1762
|
+
"researchers": {
|
|
1763
|
+
"type": "researchers",
|
|
1764
|
+
"description": "Researcher IDs matched to the patent's inventors list. (note: this returns only the disambiguated inventors of a patent; in order to get the full list of inventors, the field `inventors` should be used).",
|
|
1765
|
+
"long_description": null,
|
|
1766
|
+
"is_entity": true,
|
|
1767
|
+
"is_filter": true,
|
|
1768
|
+
"is_facet": false,
|
|
1769
|
+
"is_multivalue": true,
|
|
1770
|
+
"solr_fields": { "return": "researcher_ids", "filter": "researcher_ids" }
|
|
1771
|
+
}
|
|
1772
|
+
},
|
|
1773
|
+
"fieldsets": ["basics", "extras", "categories"],
|
|
1774
|
+
"metrics": { "count": { "name": "count", "description": "Total count" } },
|
|
1775
|
+
"search_fields": ["title_only", "full_data", "title_abstract_only", "inventors"]
|
|
1776
|
+
},
|
|
1777
|
+
"clinical_trials": {
|
|
1778
|
+
"fields": {
|
|
1779
|
+
"phase": {
|
|
1780
|
+
"type": "string",
|
|
1781
|
+
"description": "Phase of the clinical trial, as a string.",
|
|
1782
|
+
"long_description": null,
|
|
1783
|
+
"is_entity": false,
|
|
1784
|
+
"is_filter": true,
|
|
1785
|
+
"is_facet": false,
|
|
1786
|
+
"is_multivalue": false,
|
|
1787
|
+
"solr_fields": { "return": "phase", "filter": "phase" }
|
|
1788
|
+
},
|
|
1789
|
+
"funders": {
|
|
1790
|
+
"type": "organizations",
|
|
1791
|
+
"description": "GRID funding organisations that are involved with the clinical trial.",
|
|
1792
|
+
"long_description": null,
|
|
1793
|
+
"is_entity": true,
|
|
1794
|
+
"is_filter": true,
|
|
1795
|
+
"is_facet": false,
|
|
1796
|
+
"is_multivalue": true,
|
|
1797
|
+
"solr_fields": { "return": "funder_grid_ids", "filter": "funder_grid_ids" }
|
|
1798
|
+
},
|
|
1799
|
+
"category_hrcs_hc": {
|
|
1800
|
+
"type": "categories",
|
|
1801
|
+
"description": "`HRCS - Health Categories <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
1802
|
+
"long_description": null,
|
|
1803
|
+
"is_entity": true,
|
|
1804
|
+
"is_filter": true,
|
|
1805
|
+
"is_facet": false,
|
|
1806
|
+
"is_multivalue": true,
|
|
1807
|
+
"solr_fields": { "return": "hrcs_hc_2020", "filter": "hrcs_hc_2020" }
|
|
1808
|
+
},
|
|
1809
|
+
"date_inserted": {
|
|
1810
|
+
"type": "date",
|
|
1811
|
+
"description": "Date when the record was inserted into Dimensions (note: this field does not support exact match on the data, only range filters e.g. `<=` or `>=').",
|
|
1812
|
+
"long_description": null,
|
|
1813
|
+
"is_entity": false,
|
|
1814
|
+
"is_filter": true,
|
|
1815
|
+
"is_facet": false,
|
|
1816
|
+
"is_multivalue": false,
|
|
1817
|
+
"solr_fields": { "return": "created_in_dimensions", "filter": "created_in_dimensions" }
|
|
1818
|
+
},
|
|
1819
|
+
"investigators": {
|
|
1820
|
+
"type": "json",
|
|
1821
|
+
"description": "Additional details about investigators, including affiliations and roles.",
|
|
1822
|
+
"long_description": null,
|
|
1823
|
+
"is_entity": false,
|
|
1824
|
+
"is_filter": true,
|
|
1825
|
+
"is_facet": false,
|
|
1826
|
+
"is_multivalue": true,
|
|
1827
|
+
"solr_fields": { "return": "investigators", "filter": "investigator_list" }
|
|
1828
|
+
},
|
|
1829
|
+
"category_icrp_cso": {
|
|
1830
|
+
"type": "categories",
|
|
1831
|
+
"description": "`ICRP Common Scientific Outline <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
1832
|
+
"long_description": null,
|
|
1833
|
+
"is_entity": true,
|
|
1834
|
+
"is_filter": true,
|
|
1835
|
+
"is_facet": false,
|
|
1836
|
+
"is_multivalue": true,
|
|
1837
|
+
"solr_fields": { "return": "icrp_cso_2020", "filter": "icrp_cso_2020" }
|
|
1838
|
+
},
|
|
1839
|
+
"registry": {
|
|
1840
|
+
"type": "string",
|
|
1841
|
+
"description": "The platform where the clinical trial has been registered, e.g. 'ClinicalTrials.gov' or 'EU-CTR'.",
|
|
1842
|
+
"long_description": null,
|
|
1843
|
+
"is_entity": false,
|
|
1844
|
+
"is_filter": true,
|
|
1845
|
+
"is_facet": false,
|
|
1846
|
+
"is_multivalue": false,
|
|
1847
|
+
"solr_fields": { "return": "registry", "filter": "registry" }
|
|
1848
|
+
},
|
|
1849
|
+
"mesh_terms": {
|
|
1850
|
+
"type": "string",
|
|
1851
|
+
"description": "Medical Subject Heading terms as used in PubMed.",
|
|
1852
|
+
"long_description": null,
|
|
1853
|
+
"is_entity": false,
|
|
1854
|
+
"is_filter": true,
|
|
1855
|
+
"is_facet": false,
|
|
1856
|
+
"is_multivalue": true,
|
|
1857
|
+
"solr_fields": { "return": "mesh_terms", "filter": "mesh_terms_search" }
|
|
1858
|
+
},
|
|
1859
|
+
"associated_grant_ids": {
|
|
1860
|
+
"type": "string",
|
|
1861
|
+
"description": "Dimensions IDs of the grants associated to the clinical trial (see also: :ref:`clinical_trials_model` section).",
|
|
1862
|
+
"long_description": null,
|
|
1863
|
+
"is_entity": false,
|
|
1864
|
+
"is_filter": true,
|
|
1865
|
+
"is_facet": false,
|
|
1866
|
+
"is_multivalue": true,
|
|
1867
|
+
"solr_fields": { "return": "grant_ids", "filter": "grant_ids" }
|
|
1868
|
+
},
|
|
1869
|
+
"date": {
|
|
1870
|
+
"type": "date",
|
|
1871
|
+
"description": "Start date of a clinical trial.",
|
|
1872
|
+
"long_description": null,
|
|
1873
|
+
"is_entity": false,
|
|
1874
|
+
"is_filter": true,
|
|
1875
|
+
"is_facet": false,
|
|
1876
|
+
"is_multivalue": false,
|
|
1877
|
+
"solr_fields": { "return": "start_date", "filter": "start_date" }
|
|
1878
|
+
},
|
|
1879
|
+
"linkout": {
|
|
1880
|
+
"type": "string",
|
|
1881
|
+
"description": "Original URL for the clinical trial.",
|
|
1882
|
+
"long_description": null,
|
|
1883
|
+
"is_entity": false,
|
|
1884
|
+
"is_filter": false,
|
|
1885
|
+
"is_facet": false,
|
|
1886
|
+
"is_multivalue": false,
|
|
1887
|
+
"solr_fields": { "return": "linkout", "filter": "linkout" }
|
|
1888
|
+
},
|
|
1889
|
+
"publication_ids": {
|
|
1890
|
+
"type": "string",
|
|
1891
|
+
"description": "Publications mentioned in clinical trials (excluding resulting publications), as a list of Dimensions identifiers.",
|
|
1892
|
+
"long_description": null,
|
|
1893
|
+
"is_entity": false,
|
|
1894
|
+
"is_filter": true,
|
|
1895
|
+
"is_facet": false,
|
|
1896
|
+
"is_multivalue": true,
|
|
1897
|
+
"solr_fields": { "return": "cited_publication_ids", "filter": "cited_publication_ids" }
|
|
1898
|
+
},
|
|
1899
|
+
"category_hra": {
|
|
1900
|
+
"type": "categories",
|
|
1901
|
+
"description": "`Health Research Areas <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
1902
|
+
"long_description": null,
|
|
1903
|
+
"is_entity": true,
|
|
1904
|
+
"is_filter": true,
|
|
1905
|
+
"is_facet": false,
|
|
1906
|
+
"is_multivalue": true,
|
|
1907
|
+
"solr_fields": { "return": "health_research_areas", "filter": "health_research_areas" }
|
|
1908
|
+
},
|
|
1909
|
+
"dimensions_url": {
|
|
1910
|
+
"type": "string",
|
|
1911
|
+
"description": "Link pointing to the Dimensions web application",
|
|
1912
|
+
"long_description": null,
|
|
1913
|
+
"is_entity": false,
|
|
1914
|
+
"is_filter": false,
|
|
1915
|
+
"is_facet": false,
|
|
1916
|
+
"is_multivalue": false,
|
|
1917
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
1918
|
+
},
|
|
1919
|
+
"acronym": {
|
|
1920
|
+
"type": "string",
|
|
1921
|
+
"description": "Acronym of the clinical trial.",
|
|
1922
|
+
"long_description": null,
|
|
1923
|
+
"is_entity": false,
|
|
1924
|
+
"is_filter": true,
|
|
1925
|
+
"is_facet": false,
|
|
1926
|
+
"is_multivalue": false,
|
|
1927
|
+
"solr_fields": { "return": "acronym", "filter": "acronym" }
|
|
1928
|
+
},
|
|
1929
|
+
"gender": {
|
|
1930
|
+
"type": "string",
|
|
1931
|
+
"description": "The gender of the clinical trial subjects e.g. 'Male', 'Female' or 'All'.",
|
|
1932
|
+
"long_description": null,
|
|
1933
|
+
"is_entity": false,
|
|
1934
|
+
"is_filter": true,
|
|
1935
|
+
"is_facet": false,
|
|
1936
|
+
"is_multivalue": false,
|
|
1937
|
+
"solr_fields": { "return": "gender", "filter": "gender" }
|
|
1938
|
+
},
|
|
1939
|
+
"category_for": {
|
|
1940
|
+
"type": "categories",
|
|
1941
|
+
"description": "`ANZSRC Fields of Research classification <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_ (alias for most recent version).",
|
|
1942
|
+
"long_description": null,
|
|
1943
|
+
"is_entity": true,
|
|
1944
|
+
"is_filter": true,
|
|
1945
|
+
"is_facet": false,
|
|
1946
|
+
"is_multivalue": true,
|
|
1947
|
+
"solr_fields": { "return": "for_2020_2022", "filter": "for_2020_2022" }
|
|
1948
|
+
},
|
|
1949
|
+
"abstract": {
|
|
1950
|
+
"type": "string",
|
|
1951
|
+
"description": "Abstract or description of the clinical trial.",
|
|
1952
|
+
"long_description": null,
|
|
1953
|
+
"is_entity": false,
|
|
1954
|
+
"is_filter": false,
|
|
1955
|
+
"is_facet": false,
|
|
1956
|
+
"is_multivalue": false,
|
|
1957
|
+
"solr_fields": { "return": "summary", "filter": "summary" }
|
|
1958
|
+
},
|
|
1959
|
+
"interventions": {
|
|
1960
|
+
"type": "json",
|
|
1961
|
+
"description": "Structured JSON object containing information about the clinical trial's interventions according to the research plan or protocol created by the investigators.",
|
|
1962
|
+
"long_description": "Returned objects contain: ``type``, ``name``, ``description``, ``arm_group_labels``, ``other_names``.\n \n For example:\n \n .. code-block:: json\n \n {\n \"interventions\":[\n {\n \"type\":\"Drug\",\n \"name\":\"INCB024360\",\n \"description\":\"INCB024360: Oral daily dosing\",\n \"arm_group_labels\":\"MEDI4736 + INCB024360\",\n \"other_names\":\"\"\n },\n {\n \"type\":\"Drug\",\n \"name\":\"MEDI4736\",\n \"description\":\"MEDI4736 administered intravenously (IV) every two weeks (q2w)\",\n \"arm_group_labels\":\"MEDI4736 + INCB024360\",\n \"other_names\":\"\"\n }\n ]\n }",
|
|
1963
|
+
"is_entity": false,
|
|
1964
|
+
"is_filter": true,
|
|
1965
|
+
"is_facet": false,
|
|
1966
|
+
"is_multivalue": true,
|
|
1967
|
+
"solr_fields": { "return": "interventions", "filter": "interventions" }
|
|
1968
|
+
},
|
|
1969
|
+
"title": {
|
|
1970
|
+
"type": "string",
|
|
1971
|
+
"description": "The title of the clinical trial.",
|
|
1972
|
+
"long_description": null,
|
|
1973
|
+
"is_entity": false,
|
|
1974
|
+
"is_filter": false,
|
|
1975
|
+
"is_facet": false,
|
|
1976
|
+
"is_multivalue": false,
|
|
1977
|
+
"solr_fields": { "return": "title", "filter": "title" }
|
|
1978
|
+
},
|
|
1979
|
+
"publications": {
|
|
1980
|
+
"type": "publication_links",
|
|
1981
|
+
"description": "Publications mentioned in clinical trials (excluding resulting publications), as a structured entity.",
|
|
1982
|
+
"long_description": null,
|
|
1983
|
+
"is_entity": true,
|
|
1984
|
+
"is_filter": true,
|
|
1985
|
+
"is_facet": false,
|
|
1986
|
+
"is_multivalue": true,
|
|
1987
|
+
"solr_fields": { "return": "cited_publication_ids", "filter": "cited_publication_ids" }
|
|
1988
|
+
},
|
|
1989
|
+
"id": {
|
|
1990
|
+
"type": "string",
|
|
1991
|
+
"description": "Dimensions clinical trial ID",
|
|
1992
|
+
"long_description": null,
|
|
1993
|
+
"is_entity": false,
|
|
1994
|
+
"is_filter": true,
|
|
1995
|
+
"is_facet": false,
|
|
1996
|
+
"is_multivalue": false,
|
|
1997
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
1998
|
+
},
|
|
1999
|
+
"research_orgs": {
|
|
2000
|
+
"type": "organizations",
|
|
2001
|
+
"description": "GRID organizations involved, e.g. as sponsors or collaborators.",
|
|
2002
|
+
"long_description": null,
|
|
2003
|
+
"is_entity": true,
|
|
2004
|
+
"is_filter": true,
|
|
2005
|
+
"is_facet": false,
|
|
2006
|
+
"is_multivalue": true,
|
|
2007
|
+
"solr_fields": {
|
|
2008
|
+
"return": "sponsor_collaborator_grid_ids",
|
|
2009
|
+
"filter": "sponsor_collaborator_grid_ids"
|
|
2010
|
+
}
|
|
2011
|
+
},
|
|
2012
|
+
"category_icrp_ct": {
|
|
2013
|
+
"type": "categories",
|
|
2014
|
+
"description": "`ICRP Cancer Types <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
2015
|
+
"long_description": null,
|
|
2016
|
+
"is_entity": true,
|
|
2017
|
+
"is_filter": true,
|
|
2018
|
+
"is_facet": false,
|
|
2019
|
+
"is_multivalue": true,
|
|
2020
|
+
"solr_fields": { "return": "icrp_ct_2020", "filter": "icrp_ct_2020" }
|
|
2021
|
+
},
|
|
2022
|
+
"category_hrcs_rac": {
|
|
2023
|
+
"type": "categories",
|
|
2024
|
+
"description": "`HRCS \u2013 Research Activity Codes <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
2025
|
+
"long_description": null,
|
|
2026
|
+
"is_entity": true,
|
|
2027
|
+
"is_filter": true,
|
|
2028
|
+
"is_facet": false,
|
|
2029
|
+
"is_multivalue": true,
|
|
2030
|
+
"solr_fields": { "return": "hrcs_rac_2020", "filter": "hrcs_rac_2020" }
|
|
2031
|
+
},
|
|
2032
|
+
"active_years": {
|
|
2033
|
+
"type": "integer",
|
|
2034
|
+
"description": "List of active years for a clinical trial.",
|
|
2035
|
+
"long_description": null,
|
|
2036
|
+
"is_entity": false,
|
|
2037
|
+
"is_filter": true,
|
|
2038
|
+
"is_facet": false,
|
|
2039
|
+
"is_multivalue": true,
|
|
2040
|
+
"solr_fields": { "return": "active_year", "filter": "active_year" }
|
|
2041
|
+
},
|
|
2042
|
+
"conditions": {
|
|
2043
|
+
"type": "string",
|
|
2044
|
+
"description": "List of medical conditions names, e.g. 'Breast cancer' or 'Obesity'.",
|
|
2045
|
+
"long_description": null,
|
|
2046
|
+
"is_entity": false,
|
|
2047
|
+
"is_filter": true,
|
|
2048
|
+
"is_facet": false,
|
|
2049
|
+
"is_multivalue": true,
|
|
2050
|
+
"solr_fields": { "return": "conditions", "filter": "conditions" }
|
|
2051
|
+
},
|
|
2052
|
+
"brief_title": {
|
|
2053
|
+
"type": "string",
|
|
2054
|
+
"description": "Brief title of the clinical trial.",
|
|
2055
|
+
"long_description": null,
|
|
2056
|
+
"is_entity": false,
|
|
2057
|
+
"is_filter": true,
|
|
2058
|
+
"is_facet": false,
|
|
2059
|
+
"is_multivalue": false,
|
|
2060
|
+
"solr_fields": { "return": "brief_title", "filter": "brief_title" }
|
|
2061
|
+
},
|
|
2062
|
+
"funder_countries": {
|
|
2063
|
+
"type": "countries",
|
|
2064
|
+
"description": "The country group the funding organisations.",
|
|
2065
|
+
"long_description": null,
|
|
2066
|
+
"is_entity": true,
|
|
2067
|
+
"is_filter": true,
|
|
2068
|
+
"is_facet": false,
|
|
2069
|
+
"is_multivalue": true,
|
|
2070
|
+
"solr_fields": { "return": "funder_country_codes", "filter": "funder_country_codes" }
|
|
2071
|
+
},
|
|
2072
|
+
"category_rcdc": {
|
|
2073
|
+
"type": "categories",
|
|
2074
|
+
"description": "`Research, Condition, and Disease Categorization <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
2075
|
+
"long_description": null,
|
|
2076
|
+
"is_entity": true,
|
|
2077
|
+
"is_filter": true,
|
|
2078
|
+
"is_facet": false,
|
|
2079
|
+
"is_multivalue": true,
|
|
2080
|
+
"solr_fields": { "return": "rcdc_2023", "filter": "rcdc_2023" }
|
|
2081
|
+
},
|
|
2082
|
+
"category_bra": {
|
|
2083
|
+
"type": "categories",
|
|
2084
|
+
"description": "`Broad Research Areas <https://app.dimensions.ai/browse/publication/broad_research_areas?redirect_path=/discover/publication>`_",
|
|
2085
|
+
"long_description": null,
|
|
2086
|
+
"is_entity": true,
|
|
2087
|
+
"is_filter": true,
|
|
2088
|
+
"is_facet": false,
|
|
2089
|
+
"is_multivalue": true,
|
|
2090
|
+
"solr_fields": { "return": "bra_2020", "filter": "bra_2020" }
|
|
2091
|
+
},
|
|
2092
|
+
"category_for_2020": {
|
|
2093
|
+
"type": "categories",
|
|
2094
|
+
"description": "`ANZSRC Fields of Research classification <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
2095
|
+
"long_description": null,
|
|
2096
|
+
"is_entity": true,
|
|
2097
|
+
"is_filter": true,
|
|
2098
|
+
"is_facet": false,
|
|
2099
|
+
"is_multivalue": true,
|
|
2100
|
+
"solr_fields": { "return": "for_2020_2022", "filter": "for_2020_2022" }
|
|
2101
|
+
},
|
|
2102
|
+
"researchers": {
|
|
2103
|
+
"type": "researchers",
|
|
2104
|
+
"description": "Dimensions researchers IDs associated to the clinical trial.",
|
|
2105
|
+
"long_description": null,
|
|
2106
|
+
"is_entity": true,
|
|
2107
|
+
"is_filter": true,
|
|
2108
|
+
"is_facet": false,
|
|
2109
|
+
"is_multivalue": true,
|
|
2110
|
+
"solr_fields": { "return": "researcher_ids", "filter": "researcher_ids" }
|
|
2111
|
+
},
|
|
2112
|
+
"altmetric": {
|
|
2113
|
+
"type": "float",
|
|
2114
|
+
"description": "Altmetric Attention Score.",
|
|
2115
|
+
"long_description": null,
|
|
2116
|
+
"is_entity": false,
|
|
2117
|
+
"is_filter": true,
|
|
2118
|
+
"is_facet": false,
|
|
2119
|
+
"is_multivalue": false,
|
|
2120
|
+
"solr_fields": { "return": "altmetric", "filter": "altmetric" }
|
|
2121
|
+
}
|
|
2122
|
+
},
|
|
2123
|
+
"fieldsets": ["basics", "extras", "categories"],
|
|
2124
|
+
"metrics": { "count": { "name": "count", "description": "Total count" } },
|
|
2125
|
+
"search_fields": ["title_only", "full_data", "investigators", "title_abstract_only"]
|
|
2126
|
+
},
|
|
2127
|
+
"policy_documents": {
|
|
2128
|
+
"fields": {
|
|
2129
|
+
"category_hrcs_hc": {
|
|
2130
|
+
"type": "categories",
|
|
2131
|
+
"description": "`HRCS - Health Categories <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
2132
|
+
"long_description": null,
|
|
2133
|
+
"is_entity": true,
|
|
2134
|
+
"is_filter": true,
|
|
2135
|
+
"is_facet": false,
|
|
2136
|
+
"is_multivalue": true,
|
|
2137
|
+
"solr_fields": { "return": "hrcs_hc_2020", "filter": "hrcs_hc_2020" }
|
|
2138
|
+
},
|
|
2139
|
+
"date_inserted": {
|
|
2140
|
+
"type": "date",
|
|
2141
|
+
"description": "Date when the record was inserted into Dimensions (note: this field does not support exact match on the data, only range filters e.g. `<=` or `>=`).",
|
|
2142
|
+
"long_description": null,
|
|
2143
|
+
"is_entity": false,
|
|
2144
|
+
"is_filter": true,
|
|
2145
|
+
"is_facet": false,
|
|
2146
|
+
"is_multivalue": false,
|
|
2147
|
+
"solr_fields": { "return": "created_in_dimensions", "filter": "created_in_dimensions" }
|
|
2148
|
+
},
|
|
2149
|
+
"category_icrp_cso": {
|
|
2150
|
+
"type": "categories",
|
|
2151
|
+
"description": "`ICRP Common Scientific Outline <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
2152
|
+
"long_description": null,
|
|
2153
|
+
"is_entity": true,
|
|
2154
|
+
"is_filter": true,
|
|
2155
|
+
"is_facet": false,
|
|
2156
|
+
"is_multivalue": true,
|
|
2157
|
+
"solr_fields": { "return": "icrp_cso_2020", "filter": "icrp_cso_2020" }
|
|
2158
|
+
},
|
|
2159
|
+
"publisher_org_country": {
|
|
2160
|
+
"type": "countries",
|
|
2161
|
+
"description": "Country of the organization publishing the policy document.",
|
|
2162
|
+
"long_description": null,
|
|
2163
|
+
"is_entity": true,
|
|
2164
|
+
"is_filter": true,
|
|
2165
|
+
"is_facet": false,
|
|
2166
|
+
"is_multivalue": false,
|
|
2167
|
+
"solr_fields": { "return": "country_id", "filter": "country_id" }
|
|
2168
|
+
},
|
|
2169
|
+
"linkout": {
|
|
2170
|
+
"type": "string",
|
|
2171
|
+
"description": "Original URL for the policy document.",
|
|
2172
|
+
"long_description": null,
|
|
2173
|
+
"is_entity": false,
|
|
2174
|
+
"is_filter": false,
|
|
2175
|
+
"is_facet": false,
|
|
2176
|
+
"is_multivalue": false,
|
|
2177
|
+
"solr_fields": { "return": "page_url", "filter": "page_url" }
|
|
2178
|
+
},
|
|
2179
|
+
"publisher_org_state": {
|
|
2180
|
+
"type": "states",
|
|
2181
|
+
"description": "State of the organization publishing the policy document.",
|
|
2182
|
+
"long_description": null,
|
|
2183
|
+
"is_entity": true,
|
|
2184
|
+
"is_filter": true,
|
|
2185
|
+
"is_facet": false,
|
|
2186
|
+
"is_multivalue": false,
|
|
2187
|
+
"solr_fields": { "return": "state_id", "filter": "state_id" }
|
|
2188
|
+
},
|
|
2189
|
+
"publication_ids": {
|
|
2190
|
+
"type": "string",
|
|
2191
|
+
"description": "Dimensions IDs of the publications related to this policy document (see also: :ref:`policy_documents_model` section).",
|
|
2192
|
+
"long_description": null,
|
|
2193
|
+
"is_entity": false,
|
|
2194
|
+
"is_filter": true,
|
|
2195
|
+
"is_facet": false,
|
|
2196
|
+
"is_multivalue": true,
|
|
2197
|
+
"solr_fields": { "return": "publication_ids", "filter": "publication_ids" }
|
|
2198
|
+
},
|
|
2199
|
+
"category_hra": {
|
|
2200
|
+
"type": "categories",
|
|
2201
|
+
"description": "`Health Research Areas <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
2202
|
+
"long_description": null,
|
|
2203
|
+
"is_entity": true,
|
|
2204
|
+
"is_filter": true,
|
|
2205
|
+
"is_facet": false,
|
|
2206
|
+
"is_multivalue": true,
|
|
2207
|
+
"solr_fields": { "return": "health_research_areas", "filter": "health_research_areas" }
|
|
2208
|
+
},
|
|
2209
|
+
"dimensions_url": {
|
|
2210
|
+
"type": "string",
|
|
2211
|
+
"description": "Link pointing to the Dimensions web application",
|
|
2212
|
+
"long_description": null,
|
|
2213
|
+
"is_entity": false,
|
|
2214
|
+
"is_filter": false,
|
|
2215
|
+
"is_facet": false,
|
|
2216
|
+
"is_multivalue": false,
|
|
2217
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
2218
|
+
},
|
|
2219
|
+
"category_for": {
|
|
2220
|
+
"type": "categories",
|
|
2221
|
+
"description": "`ANZSRC Fields of Research classification <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_ (alias for most recent version).",
|
|
2222
|
+
"long_description": null,
|
|
2223
|
+
"is_entity": true,
|
|
2224
|
+
"is_filter": true,
|
|
2225
|
+
"is_facet": false,
|
|
2226
|
+
"is_multivalue": true,
|
|
2227
|
+
"solr_fields": { "return": "for_2020_2022", "filter": "for_2020_2022" }
|
|
2228
|
+
},
|
|
2229
|
+
"title": {
|
|
2230
|
+
"type": "string",
|
|
2231
|
+
"description": "Title of the policy document.",
|
|
2232
|
+
"long_description": null,
|
|
2233
|
+
"is_entity": false,
|
|
2234
|
+
"is_filter": true,
|
|
2235
|
+
"is_facet": false,
|
|
2236
|
+
"is_multivalue": false,
|
|
2237
|
+
"solr_fields": { "return": "title", "filter": "title" }
|
|
2238
|
+
},
|
|
2239
|
+
"publications": {
|
|
2240
|
+
"type": "publication_links",
|
|
2241
|
+
"description": "Publication IDs of the publications related to this policy document (see also: :ref:`policy_documents_model` section).",
|
|
2242
|
+
"long_description": null,
|
|
2243
|
+
"is_entity": true,
|
|
2244
|
+
"is_filter": true,
|
|
2245
|
+
"is_facet": false,
|
|
2246
|
+
"is_multivalue": true,
|
|
2247
|
+
"solr_fields": { "return": "publication_ids", "filter": "publication_ids" }
|
|
2248
|
+
},
|
|
2249
|
+
"id": {
|
|
2250
|
+
"type": "string",
|
|
2251
|
+
"description": "Dimensions policy document ID",
|
|
2252
|
+
"long_description": null,
|
|
2253
|
+
"is_entity": false,
|
|
2254
|
+
"is_filter": true,
|
|
2255
|
+
"is_facet": false,
|
|
2256
|
+
"is_multivalue": false,
|
|
2257
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
2258
|
+
},
|
|
2259
|
+
"publisher_org": {
|
|
2260
|
+
"type": "organizations",
|
|
2261
|
+
"description": "GRID organization publishing the policy document.",
|
|
2262
|
+
"long_description": null,
|
|
2263
|
+
"is_entity": true,
|
|
2264
|
+
"is_filter": true,
|
|
2265
|
+
"is_facet": false,
|
|
2266
|
+
"is_multivalue": false,
|
|
2267
|
+
"solr_fields": { "return": "grid_id", "filter": "grid_id" }
|
|
2268
|
+
},
|
|
2269
|
+
"category_icrp_ct": {
|
|
2270
|
+
"type": "categories",
|
|
2271
|
+
"description": "`ICRP Cancer Types <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
2272
|
+
"long_description": null,
|
|
2273
|
+
"is_entity": true,
|
|
2274
|
+
"is_filter": true,
|
|
2275
|
+
"is_facet": false,
|
|
2276
|
+
"is_multivalue": true,
|
|
2277
|
+
"solr_fields": { "return": "icrp_ct_2020", "filter": "icrp_ct_2020" }
|
|
2278
|
+
},
|
|
2279
|
+
"category_hrcs_rac": {
|
|
2280
|
+
"type": "categories",
|
|
2281
|
+
"description": "`HRCS \u2013 Research Activity Codes <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
2282
|
+
"long_description": null,
|
|
2283
|
+
"is_entity": true,
|
|
2284
|
+
"is_filter": true,
|
|
2285
|
+
"is_facet": false,
|
|
2286
|
+
"is_multivalue": true,
|
|
2287
|
+
"solr_fields": { "return": "hrcs_rac_2020", "filter": "hrcs_rac_2020" }
|
|
2288
|
+
},
|
|
2289
|
+
"year": {
|
|
2290
|
+
"type": "integer",
|
|
2291
|
+
"description": "Year of publication of the policy document.",
|
|
2292
|
+
"long_description": null,
|
|
2293
|
+
"is_entity": false,
|
|
2294
|
+
"is_filter": true,
|
|
2295
|
+
"is_facet": false,
|
|
2296
|
+
"is_multivalue": false,
|
|
2297
|
+
"solr_fields": { "return": "posted_on_year", "filter": "posted_on_year" }
|
|
2298
|
+
},
|
|
2299
|
+
"publisher_org_city": {
|
|
2300
|
+
"type": "cities",
|
|
2301
|
+
"description": "City of the organization publishing the policy document.",
|
|
2302
|
+
"long_description": null,
|
|
2303
|
+
"is_entity": true,
|
|
2304
|
+
"is_filter": true,
|
|
2305
|
+
"is_facet": false,
|
|
2306
|
+
"is_multivalue": false,
|
|
2307
|
+
"solr_fields": { "return": "city_id", "filter": "city_id" }
|
|
2308
|
+
},
|
|
2309
|
+
"category_rcdc": {
|
|
2310
|
+
"type": "categories",
|
|
2311
|
+
"description": "`Research, Condition, and Disease Categorization <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
2312
|
+
"long_description": null,
|
|
2313
|
+
"is_entity": true,
|
|
2314
|
+
"is_filter": true,
|
|
2315
|
+
"is_facet": false,
|
|
2316
|
+
"is_multivalue": true,
|
|
2317
|
+
"solr_fields": { "return": "rcdc_2023", "filter": "rcdc_2023" }
|
|
2318
|
+
},
|
|
2319
|
+
"category_bra": {
|
|
2320
|
+
"type": "categories",
|
|
2321
|
+
"description": "`Broad Research Areas <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
2322
|
+
"long_description": null,
|
|
2323
|
+
"is_entity": true,
|
|
2324
|
+
"is_filter": true,
|
|
2325
|
+
"is_facet": false,
|
|
2326
|
+
"is_multivalue": true,
|
|
2327
|
+
"solr_fields": { "return": "bra_2020", "filter": "bra_2020" }
|
|
2328
|
+
},
|
|
2329
|
+
"category_for_2020": {
|
|
2330
|
+
"type": "categories",
|
|
2331
|
+
"description": "`ANZSRC Fields of Research classification <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
2332
|
+
"long_description": null,
|
|
2333
|
+
"is_entity": true,
|
|
2334
|
+
"is_filter": true,
|
|
2335
|
+
"is_facet": false,
|
|
2336
|
+
"is_multivalue": true,
|
|
2337
|
+
"solr_fields": { "return": "for_2020_2022", "filter": "for_2020_2022" }
|
|
2338
|
+
}
|
|
2339
|
+
},
|
|
2340
|
+
"fieldsets": ["basics", "categories"],
|
|
2341
|
+
"metrics": { "count": { "name": "count", "description": "Total count" } },
|
|
2342
|
+
"search_fields": ["title_only", "full_data"]
|
|
2343
|
+
},
|
|
2344
|
+
"researchers": {
|
|
2345
|
+
"fields": {
|
|
2346
|
+
"current_research_org": {
|
|
2347
|
+
"type": "organizations",
|
|
2348
|
+
"description": "The most recent research organization linked to the researcher.",
|
|
2349
|
+
"long_description": null,
|
|
2350
|
+
"is_entity": true,
|
|
2351
|
+
"is_filter": true,
|
|
2352
|
+
"is_facet": false,
|
|
2353
|
+
"is_multivalue": false,
|
|
2354
|
+
"solr_fields": {
|
|
2355
|
+
"return": "dim_current_research_org_id",
|
|
2356
|
+
"filter": "dim_current_research_org_id"
|
|
2357
|
+
}
|
|
2358
|
+
},
|
|
2359
|
+
"total_publications": {
|
|
2360
|
+
"type": "integer",
|
|
2361
|
+
"description": "Total publications count.",
|
|
2362
|
+
"long_description": null,
|
|
2363
|
+
"is_entity": false,
|
|
2364
|
+
"is_filter": true,
|
|
2365
|
+
"is_facet": false,
|
|
2366
|
+
"is_multivalue": false,
|
|
2367
|
+
"solr_fields": { "return": "dim_pub_count", "filter": "dim_pub_count" }
|
|
2368
|
+
},
|
|
2369
|
+
"research_orgs": {
|
|
2370
|
+
"type": "organizations",
|
|
2371
|
+
"description": "All research organizations linked to the researcher.",
|
|
2372
|
+
"long_description": null,
|
|
2373
|
+
"is_entity": true,
|
|
2374
|
+
"is_filter": true,
|
|
2375
|
+
"is_facet": false,
|
|
2376
|
+
"is_multivalue": true,
|
|
2377
|
+
"solr_fields": { "return": "dim_research_org_id", "filter": "dim_research_org_id" }
|
|
2378
|
+
},
|
|
2379
|
+
"dimensions_url": {
|
|
2380
|
+
"type": "string",
|
|
2381
|
+
"description": "Link pointing to the Dimensions web application",
|
|
2382
|
+
"long_description": null,
|
|
2383
|
+
"is_entity": false,
|
|
2384
|
+
"is_filter": false,
|
|
2385
|
+
"is_facet": false,
|
|
2386
|
+
"is_multivalue": false,
|
|
2387
|
+
"solr_fields": { "return": "researcher_id", "filter": "researcher_id" }
|
|
2388
|
+
},
|
|
2389
|
+
"last_name": {
|
|
2390
|
+
"type": "string",
|
|
2391
|
+
"description": "Last Name.",
|
|
2392
|
+
"long_description": null,
|
|
2393
|
+
"is_entity": false,
|
|
2394
|
+
"is_filter": true,
|
|
2395
|
+
"is_facet": false,
|
|
2396
|
+
"is_multivalue": false,
|
|
2397
|
+
"solr_fields": { "return": "last_name", "filter": "last_name" }
|
|
2398
|
+
},
|
|
2399
|
+
"orcid_id": {
|
|
2400
|
+
"type": "string",
|
|
2401
|
+
"description": "`ORCID <https://orcid.org/>`_ ID.",
|
|
2402
|
+
"long_description": null,
|
|
2403
|
+
"is_entity": false,
|
|
2404
|
+
"is_filter": true,
|
|
2405
|
+
"is_facet": false,
|
|
2406
|
+
"is_multivalue": true,
|
|
2407
|
+
"solr_fields": { "return": "orcid", "filter": "orcid" }
|
|
2408
|
+
},
|
|
2409
|
+
"total_grants": {
|
|
2410
|
+
"type": "integer",
|
|
2411
|
+
"description": "Total grants count.",
|
|
2412
|
+
"long_description": null,
|
|
2413
|
+
"is_entity": false,
|
|
2414
|
+
"is_filter": true,
|
|
2415
|
+
"is_facet": false,
|
|
2416
|
+
"is_multivalue": false,
|
|
2417
|
+
"solr_fields": { "return": "proj_count", "filter": "proj_count" }
|
|
2418
|
+
},
|
|
2419
|
+
"first_grant_year": {
|
|
2420
|
+
"type": "integer",
|
|
2421
|
+
"description": "First year the researcher was awarded a grant.",
|
|
2422
|
+
"long_description": null,
|
|
2423
|
+
"is_entity": false,
|
|
2424
|
+
"is_filter": true,
|
|
2425
|
+
"is_facet": false,
|
|
2426
|
+
"is_multivalue": false,
|
|
2427
|
+
"solr_fields": { "return": "proj_min_active_year", "filter": "proj_min_active_year" }
|
|
2428
|
+
},
|
|
2429
|
+
"obsolete": {
|
|
2430
|
+
"type": "integer",
|
|
2431
|
+
"description": "Indicates researcher ID status. 0 means that the researcher ID is still active, 1 means that the researcher ID is no longer valid. See the `redirect` field for further information on invalid researcher IDs.",
|
|
2432
|
+
"long_description": null,
|
|
2433
|
+
"is_entity": false,
|
|
2434
|
+
"is_filter": true,
|
|
2435
|
+
"is_facet": false,
|
|
2436
|
+
"is_multivalue": false,
|
|
2437
|
+
"solr_fields": { "return": "obsolete", "filter": "obsolete" }
|
|
2438
|
+
},
|
|
2439
|
+
"redirect": {
|
|
2440
|
+
"type": "string",
|
|
2441
|
+
"description": "Indicates status of a researcher ID marked as obsolete. Empty means that the researcher ID was deleted. Otherwise ID provided means that is the new ID into which the obsolete one was redirected. If multiple values are available, it means that the original researcher ID was split into multiple IDs.",
|
|
2442
|
+
"long_description": null,
|
|
2443
|
+
"is_entity": false,
|
|
2444
|
+
"is_filter": true,
|
|
2445
|
+
"is_facet": false,
|
|
2446
|
+
"is_multivalue": true,
|
|
2447
|
+
"solr_fields": { "return": "redirect", "filter": "redirect" }
|
|
2448
|
+
},
|
|
2449
|
+
"last_publication_year": {
|
|
2450
|
+
"type": "integer",
|
|
2451
|
+
"description": null,
|
|
2452
|
+
"long_description": null,
|
|
2453
|
+
"is_entity": false,
|
|
2454
|
+
"is_filter": true,
|
|
2455
|
+
"is_facet": false,
|
|
2456
|
+
"is_multivalue": false,
|
|
2457
|
+
"solr_fields": {
|
|
2458
|
+
"return": "dim_pub_max_active_year",
|
|
2459
|
+
"filter": "dim_pub_max_active_year"
|
|
2460
|
+
}
|
|
2461
|
+
},
|
|
2462
|
+
"first_publication_year": {
|
|
2463
|
+
"type": "integer",
|
|
2464
|
+
"description": null,
|
|
2465
|
+
"long_description": null,
|
|
2466
|
+
"is_entity": false,
|
|
2467
|
+
"is_filter": true,
|
|
2468
|
+
"is_facet": false,
|
|
2469
|
+
"is_multivalue": false,
|
|
2470
|
+
"solr_fields": {
|
|
2471
|
+
"return": "dim_pub_min_active_year",
|
|
2472
|
+
"filter": "dim_pub_min_active_year"
|
|
2473
|
+
}
|
|
2474
|
+
},
|
|
2475
|
+
"first_name": {
|
|
2476
|
+
"type": "string",
|
|
2477
|
+
"description": "First Name.",
|
|
2478
|
+
"long_description": null,
|
|
2479
|
+
"is_entity": false,
|
|
2480
|
+
"is_filter": true,
|
|
2481
|
+
"is_facet": false,
|
|
2482
|
+
"is_multivalue": false,
|
|
2483
|
+
"solr_fields": { "return": "first_name", "filter": "first_name" }
|
|
2484
|
+
},
|
|
2485
|
+
"last_grant_year": {
|
|
2486
|
+
"type": "integer",
|
|
2487
|
+
"description": "Last year the researcher was awarded a grant.",
|
|
2488
|
+
"long_description": null,
|
|
2489
|
+
"is_entity": false,
|
|
2490
|
+
"is_filter": true,
|
|
2491
|
+
"is_facet": false,
|
|
2492
|
+
"is_multivalue": false,
|
|
2493
|
+
"solr_fields": { "return": "proj_max_active_year", "filter": "proj_max_active_year" }
|
|
2494
|
+
},
|
|
2495
|
+
"id": {
|
|
2496
|
+
"type": "string",
|
|
2497
|
+
"description": "Dimensions researcher ID.",
|
|
2498
|
+
"long_description": null,
|
|
2499
|
+
"is_entity": false,
|
|
2500
|
+
"is_filter": true,
|
|
2501
|
+
"is_facet": false,
|
|
2502
|
+
"is_multivalue": false,
|
|
2503
|
+
"solr_fields": { "return": "researcher_id", "filter": "researcher_id" }
|
|
2504
|
+
},
|
|
2505
|
+
"nih_ppid": {
|
|
2506
|
+
"type": "string",
|
|
2507
|
+
"description": "The PI Profile ID (i.e., ppid) is a Researcher ID from the US National Institute of Health (NIH).",
|
|
2508
|
+
"long_description": null,
|
|
2509
|
+
"is_entity": false,
|
|
2510
|
+
"is_filter": true,
|
|
2511
|
+
"is_facet": false,
|
|
2512
|
+
"is_multivalue": false,
|
|
2513
|
+
"solr_fields": { "return": "nih_external_id", "filter": "nih_external_id" }
|
|
2514
|
+
}
|
|
2515
|
+
},
|
|
2516
|
+
"fieldsets": ["basics", "extras"],
|
|
2517
|
+
"metrics": { "count": { "name": "count", "description": "Total count" } },
|
|
2518
|
+
"search_fields": []
|
|
2519
|
+
},
|
|
2520
|
+
"organizations": {
|
|
2521
|
+
"fields": {
|
|
2522
|
+
"ucas_ids": {
|
|
2523
|
+
"type": "string",
|
|
2524
|
+
"description": "UCAS IDs for this organization",
|
|
2525
|
+
"long_description": null,
|
|
2526
|
+
"is_entity": false,
|
|
2527
|
+
"is_filter": true,
|
|
2528
|
+
"is_facet": false,
|
|
2529
|
+
"is_multivalue": true,
|
|
2530
|
+
"solr_fields": { "return": "external_ids_ucas", "filter": "external_ids_ucas" }
|
|
2531
|
+
},
|
|
2532
|
+
"established": {
|
|
2533
|
+
"type": "integer",
|
|
2534
|
+
"description": "Year when the organization was estabilished",
|
|
2535
|
+
"long_description": null,
|
|
2536
|
+
"is_entity": false,
|
|
2537
|
+
"is_filter": true,
|
|
2538
|
+
"is_facet": false,
|
|
2539
|
+
"is_multivalue": false,
|
|
2540
|
+
"solr_fields": { "return": "established", "filter": "established" }
|
|
2541
|
+
},
|
|
2542
|
+
"external_ids_fundref": {
|
|
2543
|
+
"type": "string",
|
|
2544
|
+
"description": "Fundref IDs for this organization",
|
|
2545
|
+
"long_description": null,
|
|
2546
|
+
"is_entity": false,
|
|
2547
|
+
"is_filter": true,
|
|
2548
|
+
"is_facet": false,
|
|
2549
|
+
"is_multivalue": true,
|
|
2550
|
+
"solr_fields": { "return": "external_ids_fundref", "filter": "external_ids_fundref" }
|
|
2551
|
+
},
|
|
2552
|
+
"nuts_level3_code": {
|
|
2553
|
+
"type": "string",
|
|
2554
|
+
"description": "Level 3 code for this organization, based on `Nomenclature of Territorial Units for Statistics <https://en.wikipedia.org/wiki/Nomenclature_of_Territorial_Units_for_Statistics>`_ (NUTS) codes of the European Union.",
|
|
2555
|
+
"long_description": null,
|
|
2556
|
+
"is_entity": false,
|
|
2557
|
+
"is_filter": true,
|
|
2558
|
+
"is_facet": false,
|
|
2559
|
+
"is_multivalue": false,
|
|
2560
|
+
"solr_fields": { "return": "nuts_level3_code", "filter": "nuts_level3_code" }
|
|
2561
|
+
},
|
|
2562
|
+
"isni_ids": {
|
|
2563
|
+
"type": "string",
|
|
2564
|
+
"description": "ISNI IDs for this organization",
|
|
2565
|
+
"long_description": null,
|
|
2566
|
+
"is_entity": false,
|
|
2567
|
+
"is_filter": true,
|
|
2568
|
+
"is_facet": false,
|
|
2569
|
+
"is_multivalue": true,
|
|
2570
|
+
"solr_fields": { "return": "external_ids_isni", "filter": "external_ids_isni" }
|
|
2571
|
+
},
|
|
2572
|
+
"organization_related_ids": {
|
|
2573
|
+
"type": "string",
|
|
2574
|
+
"description": "Related organization IDs",
|
|
2575
|
+
"long_description": null,
|
|
2576
|
+
"is_entity": false,
|
|
2577
|
+
"is_filter": true,
|
|
2578
|
+
"is_facet": false,
|
|
2579
|
+
"is_multivalue": true,
|
|
2580
|
+
"solr_fields": { "return": "relationships_related", "filter": "relationships_related" }
|
|
2581
|
+
},
|
|
2582
|
+
"linkout": {
|
|
2583
|
+
"type": "string",
|
|
2584
|
+
"description": null,
|
|
2585
|
+
"long_description": null,
|
|
2586
|
+
"is_entity": false,
|
|
2587
|
+
"is_filter": false,
|
|
2588
|
+
"is_facet": false,
|
|
2589
|
+
"is_multivalue": true,
|
|
2590
|
+
"solr_fields": { "return": "links", "filter": "links" }
|
|
2591
|
+
},
|
|
2592
|
+
"types": {
|
|
2593
|
+
"type": "string",
|
|
2594
|
+
"description": "Type of an organization. Available types include: ``Company``, ``Education``, ``Healthcare``, ``Nonprofit``, ``Facility``, ``Other``, ``Government``, ``Archive``, ``Education,Company``, ``Education,Facility``, ``Education,Healthcare``, ``Education,Other``, ``Archive,Nonprofit``. Furhter explanation is on the `GRID <https://www.grid.ac/pages/policies>`_ website.",
|
|
2595
|
+
"long_description": null,
|
|
2596
|
+
"is_entity": false,
|
|
2597
|
+
"is_filter": true,
|
|
2598
|
+
"is_facet": false,
|
|
2599
|
+
"is_multivalue": true,
|
|
2600
|
+
"solr_fields": { "return": "types", "filter": "types" }
|
|
2601
|
+
},
|
|
2602
|
+
"dimensions_url": {
|
|
2603
|
+
"type": "string",
|
|
2604
|
+
"description": "Link pointing to the Dimensions web application",
|
|
2605
|
+
"long_description": null,
|
|
2606
|
+
"is_entity": false,
|
|
2607
|
+
"is_filter": false,
|
|
2608
|
+
"is_facet": false,
|
|
2609
|
+
"is_multivalue": false,
|
|
2610
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
2611
|
+
},
|
|
2612
|
+
"acronym": {
|
|
2613
|
+
"type": "string",
|
|
2614
|
+
"description": "GRID acronym of the organization. E.g., \"UT\" for `grid.26999.3d <https://grid.ac/institutes/grid.26999.3d>`_",
|
|
2615
|
+
"long_description": null,
|
|
2616
|
+
"is_entity": false,
|
|
2617
|
+
"is_filter": true,
|
|
2618
|
+
"is_facet": false,
|
|
2619
|
+
"is_multivalue": false,
|
|
2620
|
+
"solr_fields": { "return": "acronym", "filter": "acronym" }
|
|
2621
|
+
},
|
|
2622
|
+
"state_name": {
|
|
2623
|
+
"type": "string",
|
|
2624
|
+
"description": "GRID name of the organization country. E.g., \"Maryland\" for `grid.419635.c <https://grid.ac/institutes/grid.419635.c>`_",
|
|
2625
|
+
"long_description": null,
|
|
2626
|
+
"is_entity": false,
|
|
2627
|
+
"is_filter": true,
|
|
2628
|
+
"is_facet": false,
|
|
2629
|
+
"is_multivalue": false,
|
|
2630
|
+
"solr_fields": { "return": "state_name", "filter": "state_name" }
|
|
2631
|
+
},
|
|
2632
|
+
"name": {
|
|
2633
|
+
"type": "string",
|
|
2634
|
+
"description": "GRID name of the organization. E.g., \"University of Tokyo\" for `grid.26999.3d <https://grid.ac/institutes/grid.26999.3d>`_",
|
|
2635
|
+
"long_description": null,
|
|
2636
|
+
"is_entity": false,
|
|
2637
|
+
"is_filter": true,
|
|
2638
|
+
"is_facet": false,
|
|
2639
|
+
"is_multivalue": false,
|
|
2640
|
+
"solr_fields": { "return": "name", "filter": "name_search" }
|
|
2641
|
+
},
|
|
2642
|
+
"ukprn_ids": {
|
|
2643
|
+
"type": "string",
|
|
2644
|
+
"description": "UKPRN IDs for this organization",
|
|
2645
|
+
"long_description": null,
|
|
2646
|
+
"is_entity": false,
|
|
2647
|
+
"is_filter": true,
|
|
2648
|
+
"is_facet": false,
|
|
2649
|
+
"is_multivalue": true,
|
|
2650
|
+
"solr_fields": { "return": "external_ids_ukprn", "filter": "external_ids_ukprn" }
|
|
2651
|
+
},
|
|
2652
|
+
"nuts_level2_code": {
|
|
2653
|
+
"type": "string",
|
|
2654
|
+
"description": "Level 2 code for this organization, based on `Nomenclature of Territorial Units for Statistics <https://en.wikipedia.org/wiki/Nomenclature_of_Territorial_Units_for_Statistics>`_ (NUTS) codes of the European Union.",
|
|
2655
|
+
"long_description": null,
|
|
2656
|
+
"is_entity": false,
|
|
2657
|
+
"is_filter": true,
|
|
2658
|
+
"is_facet": false,
|
|
2659
|
+
"is_multivalue": false,
|
|
2660
|
+
"solr_fields": { "return": "nuts_level2_code", "filter": "nuts_level2_code" }
|
|
2661
|
+
},
|
|
2662
|
+
"organization_parent_ids": {
|
|
2663
|
+
"type": "string",
|
|
2664
|
+
"description": "Parent organization IDs",
|
|
2665
|
+
"long_description": null,
|
|
2666
|
+
"is_entity": false,
|
|
2667
|
+
"is_filter": true,
|
|
2668
|
+
"is_facet": false,
|
|
2669
|
+
"is_multivalue": true,
|
|
2670
|
+
"solr_fields": { "return": "relationships_parent", "filter": "relationships_parent" }
|
|
2671
|
+
},
|
|
2672
|
+
"organization_child_ids": {
|
|
2673
|
+
"type": "string",
|
|
2674
|
+
"description": "Child organization IDs",
|
|
2675
|
+
"long_description": null,
|
|
2676
|
+
"is_entity": false,
|
|
2677
|
+
"is_filter": true,
|
|
2678
|
+
"is_facet": false,
|
|
2679
|
+
"is_multivalue": true,
|
|
2680
|
+
"solr_fields": { "return": "relationships_children", "filter": "relationships_children" }
|
|
2681
|
+
},
|
|
2682
|
+
"country_name": {
|
|
2683
|
+
"type": "string",
|
|
2684
|
+
"description": "GRID name of the organization country. E.g., \"Japan\" for `grid.26999.3d <https://grid.ac/institutes/grid.26999.3d>`_",
|
|
2685
|
+
"long_description": null,
|
|
2686
|
+
"is_entity": false,
|
|
2687
|
+
"is_filter": true,
|
|
2688
|
+
"is_facet": false,
|
|
2689
|
+
"is_multivalue": false,
|
|
2690
|
+
"solr_fields": { "return": "country_name", "filter": "country_name" }
|
|
2691
|
+
},
|
|
2692
|
+
"id": {
|
|
2693
|
+
"type": "string",
|
|
2694
|
+
"description": "GRID ID of the organization. E.g., \"grid.26999.3d\".",
|
|
2695
|
+
"long_description": null,
|
|
2696
|
+
"is_entity": false,
|
|
2697
|
+
"is_filter": true,
|
|
2698
|
+
"is_facet": false,
|
|
2699
|
+
"is_multivalue": false,
|
|
2700
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
2701
|
+
},
|
|
2702
|
+
"ror_ids": {
|
|
2703
|
+
"type": "string",
|
|
2704
|
+
"description": "ROR IDs for this organization",
|
|
2705
|
+
"long_description": null,
|
|
2706
|
+
"is_entity": false,
|
|
2707
|
+
"is_filter": true,
|
|
2708
|
+
"is_facet": false,
|
|
2709
|
+
"is_multivalue": true,
|
|
2710
|
+
"solr_fields": { "return": "external_ids_ror", "filter": "external_ids_ror" }
|
|
2711
|
+
},
|
|
2712
|
+
"nuts_level1_name": {
|
|
2713
|
+
"type": "string",
|
|
2714
|
+
"description": "Level 1 name for this organization, based on `Nomenclature of Territorial Units for Statistics <https://en.wikipedia.org/wiki/Nomenclature_of_Territorial_Units_for_Statistics>`_ (NUTS) codes of the European Union.",
|
|
2715
|
+
"long_description": null,
|
|
2716
|
+
"is_entity": false,
|
|
2717
|
+
"is_filter": true,
|
|
2718
|
+
"is_facet": false,
|
|
2719
|
+
"is_multivalue": false,
|
|
2720
|
+
"solr_fields": { "return": "nuts_level1_name", "filter": "nuts_level1_name" }
|
|
2721
|
+
},
|
|
2722
|
+
"redirect": {
|
|
2723
|
+
"type": "string",
|
|
2724
|
+
"description": "GRID ID of an organization this one was redirected to",
|
|
2725
|
+
"long_description": null,
|
|
2726
|
+
"is_entity": false,
|
|
2727
|
+
"is_filter": true,
|
|
2728
|
+
"is_facet": false,
|
|
2729
|
+
"is_multivalue": false,
|
|
2730
|
+
"solr_fields": { "return": "redirect", "filter": "redirect" }
|
|
2731
|
+
},
|
|
2732
|
+
"orgref_ids": {
|
|
2733
|
+
"type": "string",
|
|
2734
|
+
"description": "OrgRef IDs for this organization",
|
|
2735
|
+
"long_description": null,
|
|
2736
|
+
"is_entity": false,
|
|
2737
|
+
"is_filter": true,
|
|
2738
|
+
"is_facet": false,
|
|
2739
|
+
"is_multivalue": true,
|
|
2740
|
+
"solr_fields": { "return": "external_ids_orgref", "filter": "external_ids_orgref" }
|
|
2741
|
+
},
|
|
2742
|
+
"hesa_ids": {
|
|
2743
|
+
"type": "string",
|
|
2744
|
+
"description": "HESA IDs for this organization",
|
|
2745
|
+
"long_description": null,
|
|
2746
|
+
"is_entity": false,
|
|
2747
|
+
"is_filter": true,
|
|
2748
|
+
"is_facet": false,
|
|
2749
|
+
"is_multivalue": true,
|
|
2750
|
+
"solr_fields": { "return": "external_ids_hesa", "filter": "external_ids_hesa" }
|
|
2751
|
+
},
|
|
2752
|
+
"city_name": {
|
|
2753
|
+
"type": "string",
|
|
2754
|
+
"description": "GRID name of the organization country. E.g., \"Bethesda\" for `grid.419635.c <https://grid.ac/institutes/grid.419635.c>`_",
|
|
2755
|
+
"long_description": null,
|
|
2756
|
+
"is_entity": false,
|
|
2757
|
+
"is_filter": true,
|
|
2758
|
+
"is_facet": false,
|
|
2759
|
+
"is_multivalue": false,
|
|
2760
|
+
"solr_fields": { "return": "city_name", "filter": "city_name" }
|
|
2761
|
+
},
|
|
2762
|
+
"nuts_level2_name": {
|
|
2763
|
+
"type": "string",
|
|
2764
|
+
"description": "Level 2 name for this organization, based on `Nomenclature of Territorial Units for Statistics <https://en.wikipedia.org/wiki/Nomenclature_of_Territorial_Units_for_Statistics>`_ (NUTS) codes of the European Union.",
|
|
2765
|
+
"long_description": null,
|
|
2766
|
+
"is_entity": false,
|
|
2767
|
+
"is_filter": true,
|
|
2768
|
+
"is_facet": false,
|
|
2769
|
+
"is_multivalue": false,
|
|
2770
|
+
"solr_fields": { "return": "nuts_level2_name", "filter": "nuts_level2_name" }
|
|
2771
|
+
},
|
|
2772
|
+
"status": {
|
|
2773
|
+
"type": "string",
|
|
2774
|
+
"description": "Status of an organization. May be be one of:\n \n * `a`: active organization\n * `o`: obsolete organization\n * `r`: redirected organization, see field `redirect` to obtain the GRID ID of an organization this one was redirected to",
|
|
2775
|
+
"long_description": null,
|
|
2776
|
+
"is_entity": false,
|
|
2777
|
+
"is_filter": true,
|
|
2778
|
+
"is_facet": false,
|
|
2779
|
+
"is_multivalue": false,
|
|
2780
|
+
"solr_fields": { "return": "status", "filter": "status" }
|
|
2781
|
+
},
|
|
2782
|
+
"longitude": {
|
|
2783
|
+
"type": "float",
|
|
2784
|
+
"description": null,
|
|
2785
|
+
"long_description": null,
|
|
2786
|
+
"is_entity": false,
|
|
2787
|
+
"is_filter": false,
|
|
2788
|
+
"is_facet": false,
|
|
2789
|
+
"is_multivalue": false,
|
|
2790
|
+
"solr_fields": { "return": "longitude", "filter": "longitude" }
|
|
2791
|
+
},
|
|
2792
|
+
"cnrs_ids": {
|
|
2793
|
+
"type": "string",
|
|
2794
|
+
"description": "CNRS IDs for this organization",
|
|
2795
|
+
"long_description": null,
|
|
2796
|
+
"is_entity": false,
|
|
2797
|
+
"is_filter": true,
|
|
2798
|
+
"is_facet": false,
|
|
2799
|
+
"is_multivalue": true,
|
|
2800
|
+
"solr_fields": { "return": "external_ids_cnrs", "filter": "external_ids_cnrs" }
|
|
2801
|
+
},
|
|
2802
|
+
"wikipedia_url": {
|
|
2803
|
+
"type": "string",
|
|
2804
|
+
"description": "Wikipedia URL",
|
|
2805
|
+
"long_description": null,
|
|
2806
|
+
"is_entity": false,
|
|
2807
|
+
"is_filter": false,
|
|
2808
|
+
"is_facet": false,
|
|
2809
|
+
"is_multivalue": false,
|
|
2810
|
+
"solr_fields": { "return": "wikipedia_url", "filter": "wikipedia_url" }
|
|
2811
|
+
},
|
|
2812
|
+
"latitude": {
|
|
2813
|
+
"type": "float",
|
|
2814
|
+
"description": null,
|
|
2815
|
+
"long_description": null,
|
|
2816
|
+
"is_entity": false,
|
|
2817
|
+
"is_filter": false,
|
|
2818
|
+
"is_facet": false,
|
|
2819
|
+
"is_multivalue": false,
|
|
2820
|
+
"solr_fields": { "return": "latitude", "filter": "latitude" }
|
|
2821
|
+
},
|
|
2822
|
+
"wikidata_ids": {
|
|
2823
|
+
"type": "string",
|
|
2824
|
+
"description": "WikiData IDs for this organization",
|
|
2825
|
+
"long_description": null,
|
|
2826
|
+
"is_entity": false,
|
|
2827
|
+
"is_filter": true,
|
|
2828
|
+
"is_facet": false,
|
|
2829
|
+
"is_multivalue": true,
|
|
2830
|
+
"solr_fields": { "return": "external_ids_wikidata", "filter": "external_ids_wikidata" }
|
|
2831
|
+
},
|
|
2832
|
+
"nuts_level1_code": {
|
|
2833
|
+
"type": "string",
|
|
2834
|
+
"description": "Level 1 code for this organization, based on `Nomenclature of Territorial Units for Statistics <https://en.wikipedia.org/wiki/Nomenclature_of_Territorial_Units_for_Statistics>`_ (NUTS) codes of the European Union.",
|
|
2835
|
+
"long_description": null,
|
|
2836
|
+
"is_entity": false,
|
|
2837
|
+
"is_filter": true,
|
|
2838
|
+
"is_facet": false,
|
|
2839
|
+
"is_multivalue": false,
|
|
2840
|
+
"solr_fields": { "return": "nuts_level1_code", "filter": "nuts_level1_code" }
|
|
2841
|
+
},
|
|
2842
|
+
"nuts_level3_name": {
|
|
2843
|
+
"type": "string",
|
|
2844
|
+
"description": "Level 3 name for this organization, based on `Nomenclature of Territorial Units for Statistics <https://en.wikipedia.org/wiki/Nomenclature_of_Territorial_Units_for_Statistics>`_ (NUTS) codes of the European Union.",
|
|
2845
|
+
"long_description": null,
|
|
2846
|
+
"is_entity": false,
|
|
2847
|
+
"is_filter": true,
|
|
2848
|
+
"is_facet": false,
|
|
2849
|
+
"is_multivalue": false,
|
|
2850
|
+
"solr_fields": { "return": "nuts_level3_name", "filter": "nuts_level3_name" }
|
|
2851
|
+
}
|
|
2852
|
+
},
|
|
2853
|
+
"fieldsets": ["basics", "nuts"],
|
|
2854
|
+
"metrics": { "count": { "name": "count", "description": "Total count" } },
|
|
2855
|
+
"search_fields": ["full_data"]
|
|
2856
|
+
},
|
|
2857
|
+
"datasets": {
|
|
2858
|
+
"fields": {
|
|
2859
|
+
"authors": {
|
|
2860
|
+
"type": "json",
|
|
2861
|
+
"description": "Ordered list of the dataset authors. ORCIDs are included if available.",
|
|
2862
|
+
"long_description": "Returned objects contain: `name`, `orcid`\n \n For example:\n\n .. code-block:: json\n \n {\n \"name\": \"Steffen Vogt\",\n \"orcid\": \"\"\n }",
|
|
2863
|
+
"is_entity": false,
|
|
2864
|
+
"is_filter": true,
|
|
2865
|
+
"is_facet": false,
|
|
2866
|
+
"is_multivalue": true,
|
|
2867
|
+
"solr_fields": { "return": "authors", "filter": "authors" }
|
|
2868
|
+
},
|
|
2869
|
+
"keywords": {
|
|
2870
|
+
"type": "string",
|
|
2871
|
+
"description": "Keywords used to describe the dataset (from authors).",
|
|
2872
|
+
"long_description": null,
|
|
2873
|
+
"is_entity": false,
|
|
2874
|
+
"is_filter": true,
|
|
2875
|
+
"is_facet": false,
|
|
2876
|
+
"is_multivalue": true,
|
|
2877
|
+
"solr_fields": { "return": "figshare_tags", "filter": "figshare_tags" }
|
|
2878
|
+
},
|
|
2879
|
+
"funders": {
|
|
2880
|
+
"type": "organizations",
|
|
2881
|
+
"description": "The GRID organisations funding the dataset.",
|
|
2882
|
+
"long_description": null,
|
|
2883
|
+
"is_entity": true,
|
|
2884
|
+
"is_filter": true,
|
|
2885
|
+
"is_facet": false,
|
|
2886
|
+
"is_multivalue": true,
|
|
2887
|
+
"solr_fields": { "return": "funding_grid_ids", "filter": "funding_grid_ids" }
|
|
2888
|
+
},
|
|
2889
|
+
"category_hrcs_hc": {
|
|
2890
|
+
"type": "categories",
|
|
2891
|
+
"description": "`HRCS - Health Categories <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
2892
|
+
"long_description": null,
|
|
2893
|
+
"is_entity": true,
|
|
2894
|
+
"is_filter": true,
|
|
2895
|
+
"is_facet": false,
|
|
2896
|
+
"is_multivalue": true,
|
|
2897
|
+
"solr_fields": { "return": "hrcs_hc_2020", "filter": "hrcs_hc_2020" }
|
|
2898
|
+
},
|
|
2899
|
+
"language_desc": {
|
|
2900
|
+
"type": "string",
|
|
2901
|
+
"description": "Dataset title language, as ISO 639-1 language codes.",
|
|
2902
|
+
"long_description": null,
|
|
2903
|
+
"is_entity": false,
|
|
2904
|
+
"is_filter": true,
|
|
2905
|
+
"is_facet": false,
|
|
2906
|
+
"is_multivalue": false,
|
|
2907
|
+
"solr_fields": { "return": "description_language", "filter": "description_language" }
|
|
2908
|
+
},
|
|
2909
|
+
"date_inserted": {
|
|
2910
|
+
"type": "date",
|
|
2911
|
+
"description": "Date when the record was inserted into Dimensions (note: this field does not support exact match on the data, only range filters e.g. `<=` or `>=').",
|
|
2912
|
+
"long_description": null,
|
|
2913
|
+
"is_entity": false,
|
|
2914
|
+
"is_filter": true,
|
|
2915
|
+
"is_facet": false,
|
|
2916
|
+
"is_multivalue": false,
|
|
2917
|
+
"solr_fields": { "return": "created_in_dimensions", "filter": "created_in_dimensions" }
|
|
2918
|
+
},
|
|
2919
|
+
"research_org_cities": {
|
|
2920
|
+
"type": "cities",
|
|
2921
|
+
"description": "City of the organisations the publication authors are affiliated to, expressed as GeoNames ID and name.",
|
|
2922
|
+
"long_description": null,
|
|
2923
|
+
"is_entity": true,
|
|
2924
|
+
"is_filter": true,
|
|
2925
|
+
"is_facet": false,
|
|
2926
|
+
"is_multivalue": true,
|
|
2927
|
+
"solr_fields": { "return": "city_geonames_ids", "filter": "city_geonames_ids" }
|
|
2928
|
+
},
|
|
2929
|
+
"category_icrp_cso": {
|
|
2930
|
+
"type": "categories",
|
|
2931
|
+
"description": "`ICRP Common Scientific Outline <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
2932
|
+
"long_description": null,
|
|
2933
|
+
"is_entity": true,
|
|
2934
|
+
"is_filter": true,
|
|
2935
|
+
"is_facet": false,
|
|
2936
|
+
"is_multivalue": true,
|
|
2937
|
+
"solr_fields": { "return": "icrp_cso_2020", "filter": "icrp_cso_2020" }
|
|
2938
|
+
},
|
|
2939
|
+
"research_org_countries": {
|
|
2940
|
+
"type": "countries",
|
|
2941
|
+
"description": "Country of the organisations the publication authors are affiliated to, identified using GeoNames codes (note: this field supports count: count)..",
|
|
2942
|
+
"long_description": null,
|
|
2943
|
+
"is_entity": true,
|
|
2944
|
+
"is_filter": true,
|
|
2945
|
+
"is_facet": false,
|
|
2946
|
+
"is_multivalue": true,
|
|
2947
|
+
"solr_fields": { "return": "country_codes", "filter": "country_codes" }
|
|
2948
|
+
},
|
|
2949
|
+
"date_embargo": {
|
|
2950
|
+
"type": "date",
|
|
2951
|
+
"description": "The embargo date of the dataset.",
|
|
2952
|
+
"long_description": null,
|
|
2953
|
+
"is_entity": false,
|
|
2954
|
+
"is_filter": true,
|
|
2955
|
+
"is_facet": false,
|
|
2956
|
+
"is_multivalue": false,
|
|
2957
|
+
"solr_fields": { "return": "embargo_date", "filter": "embargo_date" }
|
|
2958
|
+
},
|
|
2959
|
+
"description": {
|
|
2960
|
+
"type": "string",
|
|
2961
|
+
"description": "Description of the dataset.",
|
|
2962
|
+
"long_description": null,
|
|
2963
|
+
"is_entity": false,
|
|
2964
|
+
"is_filter": false,
|
|
2965
|
+
"is_facet": false,
|
|
2966
|
+
"is_multivalue": false,
|
|
2967
|
+
"solr_fields": {
|
|
2968
|
+
"return": "html_escaped_description",
|
|
2969
|
+
"filter": "html_escaped_description"
|
|
2970
|
+
}
|
|
2971
|
+
},
|
|
2972
|
+
"doi": {
|
|
2973
|
+
"type": "string",
|
|
2974
|
+
"description": "Dataset DOI.",
|
|
2975
|
+
"long_description": null,
|
|
2976
|
+
"is_entity": false,
|
|
2977
|
+
"is_filter": true,
|
|
2978
|
+
"is_facet": false,
|
|
2979
|
+
"is_multivalue": false,
|
|
2980
|
+
"solr_fields": { "return": "doi", "filter": "doi" }
|
|
2981
|
+
},
|
|
2982
|
+
"associated_grant_ids": {
|
|
2983
|
+
"type": "string",
|
|
2984
|
+
"description": "The Dimensions IDs of the grants linked to the publication the dataset is associated with.",
|
|
2985
|
+
"long_description": null,
|
|
2986
|
+
"is_entity": false,
|
|
2987
|
+
"is_filter": true,
|
|
2988
|
+
"is_facet": false,
|
|
2989
|
+
"is_multivalue": true,
|
|
2990
|
+
"solr_fields": { "return": "funding_grant_ids", "filter": "funding_grant_ids" }
|
|
2991
|
+
},
|
|
2992
|
+
"date": {
|
|
2993
|
+
"type": "date",
|
|
2994
|
+
"description": "The publication date of the dataset, eg \"2018-01-01\".",
|
|
2995
|
+
"long_description": null,
|
|
2996
|
+
"is_entity": false,
|
|
2997
|
+
"is_filter": true,
|
|
2998
|
+
"is_facet": false,
|
|
2999
|
+
"is_multivalue": false,
|
|
3000
|
+
"solr_fields": { "return": "pub_date", "filter": "pub_date" }
|
|
3001
|
+
},
|
|
3002
|
+
"category_hra": {
|
|
3003
|
+
"type": "categories",
|
|
3004
|
+
"description": "`Health Research Areas <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
3005
|
+
"long_description": null,
|
|
3006
|
+
"is_entity": true,
|
|
3007
|
+
"is_filter": true,
|
|
3008
|
+
"is_facet": false,
|
|
3009
|
+
"is_multivalue": true,
|
|
3010
|
+
"solr_fields": { "return": "health_research_areas", "filter": "health_research_areas" }
|
|
3011
|
+
},
|
|
3012
|
+
"dimensions_url": {
|
|
3013
|
+
"type": "string",
|
|
3014
|
+
"description": "Link pointing to the Dimensions web application",
|
|
3015
|
+
"long_description": null,
|
|
3016
|
+
"is_entity": false,
|
|
3017
|
+
"is_filter": false,
|
|
3018
|
+
"is_facet": false,
|
|
3019
|
+
"is_multivalue": false,
|
|
3020
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
3021
|
+
},
|
|
3022
|
+
"license_url": {
|
|
3023
|
+
"type": "string",
|
|
3024
|
+
"description": "The dataset licence URL, e.g. 'https://creativecommons.org/licenses/by/4.0/'.",
|
|
3025
|
+
"long_description": null,
|
|
3026
|
+
"is_entity": false,
|
|
3027
|
+
"is_filter": false,
|
|
3028
|
+
"is_facet": false,
|
|
3029
|
+
"is_multivalue": false,
|
|
3030
|
+
"solr_fields": { "return": "license_url", "filter": "license_url" }
|
|
3031
|
+
},
|
|
3032
|
+
"category_for": {
|
|
3033
|
+
"type": "categories",
|
|
3034
|
+
"description": "`ANZSRC Fields of Research classification <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_ (alias for most recent version).",
|
|
3035
|
+
"long_description": null,
|
|
3036
|
+
"is_entity": true,
|
|
3037
|
+
"is_filter": true,
|
|
3038
|
+
"is_facet": false,
|
|
3039
|
+
"is_multivalue": true,
|
|
3040
|
+
"solr_fields": { "return": "for_2020_2022", "filter": "for_2020_2022" }
|
|
3041
|
+
},
|
|
3042
|
+
"title": {
|
|
3043
|
+
"type": "string",
|
|
3044
|
+
"description": "Title of the dataset.",
|
|
3045
|
+
"long_description": null,
|
|
3046
|
+
"is_entity": false,
|
|
3047
|
+
"is_filter": false,
|
|
3048
|
+
"is_facet": false,
|
|
3049
|
+
"is_multivalue": false,
|
|
3050
|
+
"solr_fields": { "return": "html_escaped_title", "filter": "html_escaped_title" }
|
|
3051
|
+
},
|
|
3052
|
+
"id": {
|
|
3053
|
+
"type": "string",
|
|
3054
|
+
"description": "Dimensions dataset ID.",
|
|
3055
|
+
"long_description": null,
|
|
3056
|
+
"is_entity": false,
|
|
3057
|
+
"is_filter": true,
|
|
3058
|
+
"is_facet": false,
|
|
3059
|
+
"is_multivalue": false,
|
|
3060
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
3061
|
+
},
|
|
3062
|
+
"associated_publication_id": {
|
|
3063
|
+
"type": "string",
|
|
3064
|
+
"description": "The Dimensions ID of the publication linked to the dataset (single value).",
|
|
3065
|
+
"long_description": null,
|
|
3066
|
+
"is_entity": false,
|
|
3067
|
+
"is_filter": true,
|
|
3068
|
+
"is_facet": false,
|
|
3069
|
+
"is_multivalue": false,
|
|
3070
|
+
"solr_fields": { "return": "resource_dim_id", "filter": "resource_dim_id" }
|
|
3071
|
+
},
|
|
3072
|
+
"date_modified": {
|
|
3073
|
+
"type": "date",
|
|
3074
|
+
"description": "The last modification date of the dataset.",
|
|
3075
|
+
"long_description": null,
|
|
3076
|
+
"is_entity": false,
|
|
3077
|
+
"is_filter": true,
|
|
3078
|
+
"is_facet": false,
|
|
3079
|
+
"is_multivalue": false,
|
|
3080
|
+
"solr_fields": { "return": "modified_date", "filter": "modified_date" }
|
|
3081
|
+
},
|
|
3082
|
+
"category_sdg": {
|
|
3083
|
+
"type": "categories",
|
|
3084
|
+
"description": "SDG - Sustainable Development Goals",
|
|
3085
|
+
"long_description": null,
|
|
3086
|
+
"is_entity": true,
|
|
3087
|
+
"is_filter": true,
|
|
3088
|
+
"is_facet": false,
|
|
3089
|
+
"is_multivalue": true,
|
|
3090
|
+
"solr_fields": { "return": "sdg_2021", "filter": "sdg_2021" }
|
|
3091
|
+
},
|
|
3092
|
+
"research_orgs": {
|
|
3093
|
+
"type": "organizations",
|
|
3094
|
+
"description": "GRID organisations linked to the publication associated to the dataset (note: this field supports count: count).",
|
|
3095
|
+
"long_description": null,
|
|
3096
|
+
"is_entity": true,
|
|
3097
|
+
"is_filter": true,
|
|
3098
|
+
"is_facet": false,
|
|
3099
|
+
"is_multivalue": true,
|
|
3100
|
+
"solr_fields": { "return": "grid_id", "filter": "grid_id" }
|
|
3101
|
+
},
|
|
3102
|
+
"journal": {
|
|
3103
|
+
"type": "journals",
|
|
3104
|
+
"description": "The journal a data set belongs to.",
|
|
3105
|
+
"long_description": null,
|
|
3106
|
+
"is_entity": true,
|
|
3107
|
+
"is_filter": true,
|
|
3108
|
+
"is_facet": false,
|
|
3109
|
+
"is_multivalue": false,
|
|
3110
|
+
"solr_fields": { "return": "journal_id", "filter": "journal_id" }
|
|
3111
|
+
},
|
|
3112
|
+
"associated_publication": {
|
|
3113
|
+
"type": "publication_links",
|
|
3114
|
+
"description": "Publication linked to the dataset (single value).",
|
|
3115
|
+
"long_description": null,
|
|
3116
|
+
"is_entity": true,
|
|
3117
|
+
"is_filter": true,
|
|
3118
|
+
"is_facet": false,
|
|
3119
|
+
"is_multivalue": false,
|
|
3120
|
+
"solr_fields": { "return": "resource_dim_id", "filter": "resource_dim_id" }
|
|
3121
|
+
},
|
|
3122
|
+
"repository": {
|
|
3123
|
+
"type": "repositories",
|
|
3124
|
+
"description": "Repository associtated with the dataset.",
|
|
3125
|
+
"long_description": null,
|
|
3126
|
+
"is_entity": true,
|
|
3127
|
+
"is_filter": true,
|
|
3128
|
+
"is_facet": false,
|
|
3129
|
+
"is_multivalue": false,
|
|
3130
|
+
"solr_fields": { "return": "repository_id", "filter": "repository_id" }
|
|
3131
|
+
},
|
|
3132
|
+
"category_hrcs_rac": {
|
|
3133
|
+
"type": "categories",
|
|
3134
|
+
"description": "`HRCS \u2013 Research Activity Codes <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
3135
|
+
"long_description": null,
|
|
3136
|
+
"is_entity": true,
|
|
3137
|
+
"is_filter": true,
|
|
3138
|
+
"is_facet": false,
|
|
3139
|
+
"is_multivalue": true,
|
|
3140
|
+
"solr_fields": { "return": "hrcs_rac_2020", "filter": "hrcs_rac_2020" }
|
|
3141
|
+
},
|
|
3142
|
+
"category_icrp_ct": {
|
|
3143
|
+
"type": "categories",
|
|
3144
|
+
"description": "`ICRP Cancer Types <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
3145
|
+
"long_description": null,
|
|
3146
|
+
"is_entity": true,
|
|
3147
|
+
"is_filter": true,
|
|
3148
|
+
"is_facet": false,
|
|
3149
|
+
"is_multivalue": true,
|
|
3150
|
+
"solr_fields": { "return": "icrp_ct_2020", "filter": "icrp_ct_2020" }
|
|
3151
|
+
},
|
|
3152
|
+
"year": {
|
|
3153
|
+
"type": "integer",
|
|
3154
|
+
"description": "Year of publication of the dataset.",
|
|
3155
|
+
"long_description": null,
|
|
3156
|
+
"is_entity": false,
|
|
3157
|
+
"is_filter": true,
|
|
3158
|
+
"is_facet": false,
|
|
3159
|
+
"is_multivalue": false,
|
|
3160
|
+
"solr_fields": { "return": "pub_year", "filter": "pub_year" }
|
|
3161
|
+
},
|
|
3162
|
+
"figshare_url": {
|
|
3163
|
+
"type": "string",
|
|
3164
|
+
"description": "Figshare URL for the dataset.",
|
|
3165
|
+
"long_description": null,
|
|
3166
|
+
"is_entity": false,
|
|
3167
|
+
"is_filter": false,
|
|
3168
|
+
"is_facet": false,
|
|
3169
|
+
"is_multivalue": false,
|
|
3170
|
+
"solr_fields": { "return": "linkout", "filter": "linkout" }
|
|
3171
|
+
},
|
|
3172
|
+
"date_created": {
|
|
3173
|
+
"type": "date",
|
|
3174
|
+
"description": "The creation date of the dataset.",
|
|
3175
|
+
"long_description": null,
|
|
3176
|
+
"is_entity": false,
|
|
3177
|
+
"is_filter": true,
|
|
3178
|
+
"is_facet": false,
|
|
3179
|
+
"is_multivalue": false,
|
|
3180
|
+
"solr_fields": { "return": "created_date", "filter": "created_date" }
|
|
3181
|
+
},
|
|
3182
|
+
"license_name": {
|
|
3183
|
+
"type": "string",
|
|
3184
|
+
"description": "The dataset licence name, e.g. 'CC BY 4.0'.",
|
|
3185
|
+
"long_description": null,
|
|
3186
|
+
"is_entity": false,
|
|
3187
|
+
"is_filter": true,
|
|
3188
|
+
"is_facet": false,
|
|
3189
|
+
"is_multivalue": false,
|
|
3190
|
+
"solr_fields": { "return": "license_name", "filter": "license_name" }
|
|
3191
|
+
},
|
|
3192
|
+
"funder_countries": {
|
|
3193
|
+
"type": "countries",
|
|
3194
|
+
"description": "The country linked to the organisation funding the grant, expressed as GeoNames codes.",
|
|
3195
|
+
"long_description": null,
|
|
3196
|
+
"is_entity": true,
|
|
3197
|
+
"is_filter": true,
|
|
3198
|
+
"is_facet": false,
|
|
3199
|
+
"is_multivalue": true,
|
|
3200
|
+
"solr_fields": { "return": "funding_country_codes", "filter": "funding_country_codes" }
|
|
3201
|
+
},
|
|
3202
|
+
"language_title": {
|
|
3203
|
+
"type": "string",
|
|
3204
|
+
"description": "Dataset title language, as ISO 639-1 language codes.",
|
|
3205
|
+
"long_description": null,
|
|
3206
|
+
"is_entity": false,
|
|
3207
|
+
"is_filter": true,
|
|
3208
|
+
"is_facet": false,
|
|
3209
|
+
"is_multivalue": false,
|
|
3210
|
+
"solr_fields": { "return": "title_language", "filter": "title_language" }
|
|
3211
|
+
},
|
|
3212
|
+
"category_rcdc": {
|
|
3213
|
+
"type": "categories",
|
|
3214
|
+
"description": "`Research, Condition, and Disease Categorization <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
3215
|
+
"long_description": null,
|
|
3216
|
+
"is_entity": true,
|
|
3217
|
+
"is_filter": true,
|
|
3218
|
+
"is_facet": false,
|
|
3219
|
+
"is_multivalue": true,
|
|
3220
|
+
"solr_fields": { "return": "rcdc_2023", "filter": "rcdc_2023" }
|
|
3221
|
+
},
|
|
3222
|
+
"category_bra": {
|
|
3223
|
+
"type": "categories",
|
|
3224
|
+
"description": "`Broad Research Areas <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
3225
|
+
"long_description": null,
|
|
3226
|
+
"is_entity": true,
|
|
3227
|
+
"is_filter": true,
|
|
3228
|
+
"is_facet": false,
|
|
3229
|
+
"is_multivalue": true,
|
|
3230
|
+
"solr_fields": { "return": "bra_2020", "filter": "bra_2020" }
|
|
3231
|
+
},
|
|
3232
|
+
"category_for_2020": {
|
|
3233
|
+
"type": "categories",
|
|
3234
|
+
"description": "`ANZSRC Fields of Research classification <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
3235
|
+
"long_description": null,
|
|
3236
|
+
"is_entity": true,
|
|
3237
|
+
"is_filter": true,
|
|
3238
|
+
"is_facet": false,
|
|
3239
|
+
"is_multivalue": true,
|
|
3240
|
+
"solr_fields": { "return": "for_2020_2022", "filter": "for_2020_2022" }
|
|
3241
|
+
},
|
|
3242
|
+
"researchers": {
|
|
3243
|
+
"type": "researchers",
|
|
3244
|
+
"description": "Dimensions researchers IDs associated to the dataset's associated publication. Note: in most cases, these would be the same as the dataset authors.",
|
|
3245
|
+
"long_description": null,
|
|
3246
|
+
"is_entity": true,
|
|
3247
|
+
"is_filter": true,
|
|
3248
|
+
"is_facet": false,
|
|
3249
|
+
"is_multivalue": true,
|
|
3250
|
+
"solr_fields": { "return": "researcher_ids", "filter": "researcher_ids" }
|
|
3251
|
+
},
|
|
3252
|
+
"research_org_states": {
|
|
3253
|
+
"type": "states",
|
|
3254
|
+
"description": "State of the organisations the publication authors are affiliated to, expressed as GeoNames codes (ISO\u200c-3166-2).",
|
|
3255
|
+
"long_description": null,
|
|
3256
|
+
"is_entity": true,
|
|
3257
|
+
"is_filter": true,
|
|
3258
|
+
"is_facet": false,
|
|
3259
|
+
"is_multivalue": true,
|
|
3260
|
+
"solr_fields": { "return": "state_codes", "filter": "state_codes" }
|
|
3261
|
+
}
|
|
3262
|
+
},
|
|
3263
|
+
"fieldsets": ["basics", "categories"],
|
|
3264
|
+
"metrics": { "count": { "name": "count", "description": "Total count" } },
|
|
3265
|
+
"search_fields": ["title_only", "full_data", "title_abstract_only"]
|
|
3266
|
+
},
|
|
3267
|
+
"source_titles": {
|
|
3268
|
+
"fields": {
|
|
3269
|
+
"sjr": {
|
|
3270
|
+
"type": "float",
|
|
3271
|
+
"description": "SJR indicator (SCImago Journal Rank). This indicator measures both the number of citations received by a journal and the importance or prestige of the journals where the citations come from.",
|
|
3272
|
+
"long_description": null,
|
|
3273
|
+
"is_entity": false,
|
|
3274
|
+
"is_filter": true,
|
|
3275
|
+
"is_facet": false,
|
|
3276
|
+
"is_multivalue": false,
|
|
3277
|
+
"solr_fields": { "return": "sjr", "filter": "sjr" }
|
|
3278
|
+
},
|
|
3279
|
+
"type": {
|
|
3280
|
+
"type": "string",
|
|
3281
|
+
"description": "The source type: one of `book_series`, `proceeding`, `journal`, `preprint_platform` (4 in total).",
|
|
3282
|
+
"long_description": null,
|
|
3283
|
+
"is_entity": false,
|
|
3284
|
+
"is_filter": true,
|
|
3285
|
+
"is_facet": false,
|
|
3286
|
+
"is_multivalue": false,
|
|
3287
|
+
"solr_fields": { "return": "source_title_type", "filter": "source_title_type" }
|
|
3288
|
+
},
|
|
3289
|
+
"start_year": {
|
|
3290
|
+
"type": "integer",
|
|
3291
|
+
"description": "Year when the source started publishing.",
|
|
3292
|
+
"long_description": null,
|
|
3293
|
+
"is_entity": false,
|
|
3294
|
+
"is_filter": true,
|
|
3295
|
+
"is_facet": false,
|
|
3296
|
+
"is_multivalue": false,
|
|
3297
|
+
"solr_fields": { "return": "start_year", "filter": "start_year" }
|
|
3298
|
+
},
|
|
3299
|
+
"issn_print": {
|
|
3300
|
+
"type": "string",
|
|
3301
|
+
"description": "Print ISSN for the source.",
|
|
3302
|
+
"long_description": null,
|
|
3303
|
+
"is_entity": false,
|
|
3304
|
+
"is_filter": true,
|
|
3305
|
+
"is_facet": false,
|
|
3306
|
+
"is_multivalue": false,
|
|
3307
|
+
"solr_fields": { "return": "issn_print", "filter": "issn_print" }
|
|
3308
|
+
},
|
|
3309
|
+
"issn_electronic": {
|
|
3310
|
+
"type": "string",
|
|
3311
|
+
"description": "Electronic ISSN for the source.",
|
|
3312
|
+
"long_description": null,
|
|
3313
|
+
"is_entity": false,
|
|
3314
|
+
"is_filter": true,
|
|
3315
|
+
"is_facet": false,
|
|
3316
|
+
"is_multivalue": false,
|
|
3317
|
+
"solr_fields": { "return": "issn_electronic", "filter": "issn_electronic" }
|
|
3318
|
+
},
|
|
3319
|
+
"publisher": {
|
|
3320
|
+
"type": "string",
|
|
3321
|
+
"description": "The name of the source publisher entity.",
|
|
3322
|
+
"long_description": null,
|
|
3323
|
+
"is_entity": false,
|
|
3324
|
+
"is_filter": true,
|
|
3325
|
+
"is_facet": false,
|
|
3326
|
+
"is_multivalue": false,
|
|
3327
|
+
"solr_fields": { "return": "publisher", "filter": "publisher" }
|
|
3328
|
+
},
|
|
3329
|
+
"snip": {
|
|
3330
|
+
"type": "float",
|
|
3331
|
+
"description": "SNIP indicator (source normalized impact per paper). This indicator measures the average citation impact of the publications of a journal.",
|
|
3332
|
+
"long_description": null,
|
|
3333
|
+
"is_entity": false,
|
|
3334
|
+
"is_filter": true,
|
|
3335
|
+
"is_facet": false,
|
|
3336
|
+
"is_multivalue": false,
|
|
3337
|
+
"solr_fields": { "return": "snip", "filter": "snip" }
|
|
3338
|
+
},
|
|
3339
|
+
"issn": {
|
|
3340
|
+
"type": "string",
|
|
3341
|
+
"description": "List of known ISSNs for the source, including both print and electronic.",
|
|
3342
|
+
"long_description": null,
|
|
3343
|
+
"is_entity": false,
|
|
3344
|
+
"is_filter": true,
|
|
3345
|
+
"is_facet": false,
|
|
3346
|
+
"is_multivalue": true,
|
|
3347
|
+
"solr_fields": { "return": "issn", "filter": "issn" }
|
|
3348
|
+
},
|
|
3349
|
+
"title": {
|
|
3350
|
+
"type": "string",
|
|
3351
|
+
"description": "The title of the source.",
|
|
3352
|
+
"long_description": null,
|
|
3353
|
+
"is_entity": false,
|
|
3354
|
+
"is_filter": false,
|
|
3355
|
+
"is_facet": false,
|
|
3356
|
+
"is_multivalue": false,
|
|
3357
|
+
"solr_fields": { "return": "title", "filter": "title" }
|
|
3358
|
+
},
|
|
3359
|
+
"id": {
|
|
3360
|
+
"type": "string",
|
|
3361
|
+
"description": "The Dimensions ID of the source.",
|
|
3362
|
+
"long_description": null,
|
|
3363
|
+
"is_entity": false,
|
|
3364
|
+
"is_filter": true,
|
|
3365
|
+
"is_facet": false,
|
|
3366
|
+
"is_multivalue": false,
|
|
3367
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
3368
|
+
},
|
|
3369
|
+
"linkout": {
|
|
3370
|
+
"type": "string",
|
|
3371
|
+
"description": "The source web URL, if known.",
|
|
3372
|
+
"long_description": null,
|
|
3373
|
+
"is_entity": false,
|
|
3374
|
+
"is_filter": false,
|
|
3375
|
+
"is_facet": false,
|
|
3376
|
+
"is_multivalue": false,
|
|
3377
|
+
"solr_fields": { "return": "linkout", "filter": "linkout" }
|
|
3378
|
+
}
|
|
3379
|
+
},
|
|
3380
|
+
"fieldsets": ["basics"],
|
|
3381
|
+
"metrics": { "count": { "name": "count", "description": "Total count" } },
|
|
3382
|
+
"search_fields": ["title_only"]
|
|
3383
|
+
},
|
|
3384
|
+
"reports": {
|
|
3385
|
+
"fields": {
|
|
3386
|
+
"authors": {
|
|
3387
|
+
"type": "json",
|
|
3388
|
+
"description": "Ordered list of authors names and their affiliations, as they appear in the source. The list can include researcher and organization identifiers, when available.",
|
|
3389
|
+
"long_description": null,
|
|
3390
|
+
"is_entity": false,
|
|
3391
|
+
"is_filter": true,
|
|
3392
|
+
"is_facet": false,
|
|
3393
|
+
"is_multivalue": false,
|
|
3394
|
+
"solr_fields": { "return": "affiliations", "filter": "affiliations" }
|
|
3395
|
+
},
|
|
3396
|
+
"keywords": {
|
|
3397
|
+
"type": "string",
|
|
3398
|
+
"description": "Keywords, as provided by the source.",
|
|
3399
|
+
"long_description": null,
|
|
3400
|
+
"is_entity": false,
|
|
3401
|
+
"is_filter": true,
|
|
3402
|
+
"is_facet": false,
|
|
3403
|
+
"is_multivalue": false,
|
|
3404
|
+
"solr_fields": { "return": "keywords", "filter": "keywords" }
|
|
3405
|
+
},
|
|
3406
|
+
"category_hrcs_hc": {
|
|
3407
|
+
"type": "categories",
|
|
3408
|
+
"description": "`HRCS - Health Categories <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
3409
|
+
"long_description": null,
|
|
3410
|
+
"is_entity": true,
|
|
3411
|
+
"is_filter": true,
|
|
3412
|
+
"is_facet": false,
|
|
3413
|
+
"is_multivalue": true,
|
|
3414
|
+
"solr_fields": { "return": "hrcs_hc_2020", "filter": "hrcs_hc_2020" }
|
|
3415
|
+
},
|
|
3416
|
+
"date_inserted": {
|
|
3417
|
+
"type": "date",
|
|
3418
|
+
"description": "Date when the record was inserted into Dimensions (note: this field does not support exact match on the data, only range filters e.g. `<=` or `>=').",
|
|
3419
|
+
"long_description": null,
|
|
3420
|
+
"is_entity": false,
|
|
3421
|
+
"is_filter": true,
|
|
3422
|
+
"is_facet": false,
|
|
3423
|
+
"is_multivalue": false,
|
|
3424
|
+
"solr_fields": { "return": "created_in_dimensions", "filter": "created_in_dimensions" }
|
|
3425
|
+
},
|
|
3426
|
+
"publisher_orgs": {
|
|
3427
|
+
"type": "organizations",
|
|
3428
|
+
"description": "GRID organizations publishing the report (only disambiguated).",
|
|
3429
|
+
"long_description": null,
|
|
3430
|
+
"is_entity": true,
|
|
3431
|
+
"is_filter": true,
|
|
3432
|
+
"is_facet": false,
|
|
3433
|
+
"is_multivalue": true,
|
|
3434
|
+
"solr_fields": { "return": "publishing_org_ids", "filter": "publishing_org_ids" }
|
|
3435
|
+
},
|
|
3436
|
+
"research_org_cities": {
|
|
3437
|
+
"type": "cities",
|
|
3438
|
+
"description": "Cities of the organisations associated with the report, expressed as GeoNames ID and name.",
|
|
3439
|
+
"long_description": null,
|
|
3440
|
+
"is_entity": true,
|
|
3441
|
+
"is_filter": true,
|
|
3442
|
+
"is_facet": false,
|
|
3443
|
+
"is_multivalue": true,
|
|
3444
|
+
"solr_fields": {
|
|
3445
|
+
"return": "all_research_org_city_geonames_ids",
|
|
3446
|
+
"filter": "all_research_org_city_geonames_ids"
|
|
3447
|
+
}
|
|
3448
|
+
},
|
|
3449
|
+
"category_icrp_cso": {
|
|
3450
|
+
"type": "categories",
|
|
3451
|
+
"description": "`ICRP Common Scientific Outline <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
3452
|
+
"long_description": null,
|
|
3453
|
+
"is_entity": true,
|
|
3454
|
+
"is_filter": true,
|
|
3455
|
+
"is_facet": false,
|
|
3456
|
+
"is_multivalue": true,
|
|
3457
|
+
"solr_fields": { "return": "icrp_cso_2020", "filter": "icrp_cso_2020" }
|
|
3458
|
+
},
|
|
3459
|
+
"research_org_countries": {
|
|
3460
|
+
"type": "countries",
|
|
3461
|
+
"description": "Countries of the organisations associated with the report, expressed as GeoNames code and name.",
|
|
3462
|
+
"long_description": null,
|
|
3463
|
+
"is_entity": true,
|
|
3464
|
+
"is_filter": true,
|
|
3465
|
+
"is_facet": false,
|
|
3466
|
+
"is_multivalue": true,
|
|
3467
|
+
"solr_fields": {
|
|
3468
|
+
"return": "all_research_org_country_codes",
|
|
3469
|
+
"filter": "all_research_org_country_codes"
|
|
3470
|
+
}
|
|
3471
|
+
},
|
|
3472
|
+
"publisher_details": {
|
|
3473
|
+
"type": "json",
|
|
3474
|
+
"description": "Organizations publishing the report, as they appear in the source.",
|
|
3475
|
+
"long_description": null,
|
|
3476
|
+
"is_entity": false,
|
|
3477
|
+
"is_filter": true,
|
|
3478
|
+
"is_facet": false,
|
|
3479
|
+
"is_multivalue": false,
|
|
3480
|
+
"solr_fields": { "return": "publishing_orgs", "filter": "publishing_orgs" }
|
|
3481
|
+
},
|
|
3482
|
+
"concepts_scores": {
|
|
3483
|
+
"type": "json",
|
|
3484
|
+
"description": "Relevancy scores for `concepts`.",
|
|
3485
|
+
"long_description": "Returned objects contain: ``concept``, ``relevance``.\n \n For example:\n \n .. code-block:: json\n \n {\n \"concepts_scores\": [\n {\n \"concept\": \"professional relations\",\n \"relevance\": 0.088\n },\n {\n \"concept\": \"relation\",\n \"relevance\": 0.062\n },\n {\n \"concept\": \"representation\",\n \"relevance\": 0.025\n },\n {\n \"concept\": \"skald\",\n \"relevance\": 6.984\n },\n {\n \"concept\": \"Representations of Skalds\",\n \"relevance\": 0.0\n },\n {\n \"concept\": \"Sagas 1\",\n \"relevance\": 0.0\n }\n ]\n }",
|
|
3486
|
+
"is_entity": false,
|
|
3487
|
+
"is_filter": true,
|
|
3488
|
+
"is_facet": false,
|
|
3489
|
+
"is_multivalue": false,
|
|
3490
|
+
"solr_fields": { "return": "terms_v6", "filter": "phrases_search_v6" }
|
|
3491
|
+
},
|
|
3492
|
+
"date": {
|
|
3493
|
+
"type": "date",
|
|
3494
|
+
"description": "Date when the report was published, in the format 'YYYY-MM-DD'.",
|
|
3495
|
+
"long_description": null,
|
|
3496
|
+
"is_entity": false,
|
|
3497
|
+
"is_filter": true,
|
|
3498
|
+
"is_facet": false,
|
|
3499
|
+
"is_multivalue": false,
|
|
3500
|
+
"solr_fields": { "return": "pub_date", "filter": "pub_date" }
|
|
3501
|
+
},
|
|
3502
|
+
"linkout": {
|
|
3503
|
+
"type": "string",
|
|
3504
|
+
"description": "Original URL for the report.",
|
|
3505
|
+
"long_description": null,
|
|
3506
|
+
"is_entity": false,
|
|
3507
|
+
"is_filter": false,
|
|
3508
|
+
"is_facet": false,
|
|
3509
|
+
"is_multivalue": false,
|
|
3510
|
+
"solr_fields": { "return": "linkout", "filter": "linkout" }
|
|
3511
|
+
},
|
|
3512
|
+
"doi": {
|
|
3513
|
+
"type": "string",
|
|
3514
|
+
"description": "Digital object identifier.",
|
|
3515
|
+
"long_description": null,
|
|
3516
|
+
"is_entity": false,
|
|
3517
|
+
"is_filter": true,
|
|
3518
|
+
"is_facet": false,
|
|
3519
|
+
"is_multivalue": false,
|
|
3520
|
+
"solr_fields": { "return": "doi", "filter": "doi" }
|
|
3521
|
+
},
|
|
3522
|
+
"category_hra": {
|
|
3523
|
+
"type": "categories",
|
|
3524
|
+
"description": "`Health Research Areas <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
3525
|
+
"long_description": null,
|
|
3526
|
+
"is_entity": true,
|
|
3527
|
+
"is_filter": true,
|
|
3528
|
+
"is_facet": false,
|
|
3529
|
+
"is_multivalue": true,
|
|
3530
|
+
"solr_fields": { "return": "hra", "filter": "hra" }
|
|
3531
|
+
},
|
|
3532
|
+
"responsible_orgs_details": {
|
|
3533
|
+
"type": "json",
|
|
3534
|
+
"description": "Organizations responsible for the report, as they appear in the source. Note: this can be different from the author affiliations.",
|
|
3535
|
+
"long_description": null,
|
|
3536
|
+
"is_entity": false,
|
|
3537
|
+
"is_filter": true,
|
|
3538
|
+
"is_facet": false,
|
|
3539
|
+
"is_multivalue": false,
|
|
3540
|
+
"solr_fields": { "return": "research_orgs", "filter": "research_orgs" }
|
|
3541
|
+
},
|
|
3542
|
+
"category_for": {
|
|
3543
|
+
"type": "categories",
|
|
3544
|
+
"description": "`ANZSRC Fields of Research classification <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_ (alias for most recent version).",
|
|
3545
|
+
"long_description": null,
|
|
3546
|
+
"is_entity": true,
|
|
3547
|
+
"is_filter": true,
|
|
3548
|
+
"is_facet": false,
|
|
3549
|
+
"is_multivalue": true,
|
|
3550
|
+
"solr_fields": { "return": "for_2020_2022", "filter": "for_2020_2022" }
|
|
3551
|
+
},
|
|
3552
|
+
"abstract": {
|
|
3553
|
+
"type": "string",
|
|
3554
|
+
"description": "The abstract of the report.",
|
|
3555
|
+
"long_description": null,
|
|
3556
|
+
"is_entity": false,
|
|
3557
|
+
"is_filter": false,
|
|
3558
|
+
"is_facet": false,
|
|
3559
|
+
"is_multivalue": false,
|
|
3560
|
+
"solr_fields": { "return": "abstract", "filter": "abstract" }
|
|
3561
|
+
},
|
|
3562
|
+
"title": {
|
|
3563
|
+
"type": "string",
|
|
3564
|
+
"description": "Title of a report.",
|
|
3565
|
+
"long_description": null,
|
|
3566
|
+
"is_entity": false,
|
|
3567
|
+
"is_filter": false,
|
|
3568
|
+
"is_facet": false,
|
|
3569
|
+
"is_multivalue": false,
|
|
3570
|
+
"solr_fields": { "return": "title", "filter": "title" }
|
|
3571
|
+
},
|
|
3572
|
+
"id": {
|
|
3573
|
+
"type": "string",
|
|
3574
|
+
"description": "Dimensions report ID.",
|
|
3575
|
+
"long_description": null,
|
|
3576
|
+
"is_entity": false,
|
|
3577
|
+
"is_filter": true,
|
|
3578
|
+
"is_facet": false,
|
|
3579
|
+
"is_multivalue": false,
|
|
3580
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
3581
|
+
},
|
|
3582
|
+
"responsible_orgs": {
|
|
3583
|
+
"type": "organizations",
|
|
3584
|
+
"description": "GRID organizations responsible for the report. Note: this can be different from the author affiliations.",
|
|
3585
|
+
"long_description": null,
|
|
3586
|
+
"is_entity": true,
|
|
3587
|
+
"is_filter": true,
|
|
3588
|
+
"is_facet": false,
|
|
3589
|
+
"is_multivalue": true,
|
|
3590
|
+
"solr_fields": { "return": "research_org_ids", "filter": "research_org_ids" }
|
|
3591
|
+
},
|
|
3592
|
+
"category_sdg": {
|
|
3593
|
+
"type": "categories",
|
|
3594
|
+
"description": "SDG - Sustainable Development Goals",
|
|
3595
|
+
"long_description": null,
|
|
3596
|
+
"is_entity": true,
|
|
3597
|
+
"is_filter": true,
|
|
3598
|
+
"is_facet": false,
|
|
3599
|
+
"is_multivalue": true,
|
|
3600
|
+
"solr_fields": { "return": "sdg_2021", "filter": "sdg_2021" }
|
|
3601
|
+
},
|
|
3602
|
+
"research_orgs": {
|
|
3603
|
+
"type": "organizations",
|
|
3604
|
+
"description": "Combined list of GRID organisations associated with the report, because the source marks them as responsible for it, or because they appear as authors affiliations.",
|
|
3605
|
+
"long_description": null,
|
|
3606
|
+
"is_entity": true,
|
|
3607
|
+
"is_filter": true,
|
|
3608
|
+
"is_facet": false,
|
|
3609
|
+
"is_multivalue": true,
|
|
3610
|
+
"solr_fields": { "return": "all_research_org_ids", "filter": "all_research_org_ids" }
|
|
3611
|
+
},
|
|
3612
|
+
"category_uoa": {
|
|
3613
|
+
"type": "categories",
|
|
3614
|
+
"description": "`Units of Assessment <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
3615
|
+
"long_description": null,
|
|
3616
|
+
"is_entity": true,
|
|
3617
|
+
"is_filter": true,
|
|
3618
|
+
"is_facet": false,
|
|
3619
|
+
"is_multivalue": true,
|
|
3620
|
+
"solr_fields": { "return": "uoa_2023", "filter": "uoa_2023" }
|
|
3621
|
+
},
|
|
3622
|
+
"external_ids": {
|
|
3623
|
+
"type": "json",
|
|
3624
|
+
"description": "External identifiers available from the report publisher (e.g. OSTI ID).",
|
|
3625
|
+
"long_description": null,
|
|
3626
|
+
"is_entity": false,
|
|
3627
|
+
"is_filter": true,
|
|
3628
|
+
"is_facet": false,
|
|
3629
|
+
"is_multivalue": false,
|
|
3630
|
+
"solr_fields": { "return": "document_numbers", "filter": "document_numbers" }
|
|
3631
|
+
},
|
|
3632
|
+
"responsible_orgs_states": {
|
|
3633
|
+
"type": "states",
|
|
3634
|
+
"description": "States of the organisations responsible for the report, expressed as GeoNames codes (ISO-3166-2).",
|
|
3635
|
+
"long_description": null,
|
|
3636
|
+
"is_entity": true,
|
|
3637
|
+
"is_filter": true,
|
|
3638
|
+
"is_facet": false,
|
|
3639
|
+
"is_multivalue": true,
|
|
3640
|
+
"solr_fields": {
|
|
3641
|
+
"return": "research_org_state_codes",
|
|
3642
|
+
"filter": "research_org_state_codes"
|
|
3643
|
+
}
|
|
3644
|
+
},
|
|
3645
|
+
"category_icrp_ct": {
|
|
3646
|
+
"type": "categories",
|
|
3647
|
+
"description": "`ICRP Cancer Types <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
3648
|
+
"long_description": null,
|
|
3649
|
+
"is_entity": true,
|
|
3650
|
+
"is_filter": true,
|
|
3651
|
+
"is_facet": false,
|
|
3652
|
+
"is_multivalue": true,
|
|
3653
|
+
"solr_fields": { "return": "icrp_ct_2020", "filter": "icrp_ct_2020" }
|
|
3654
|
+
},
|
|
3655
|
+
"category_hrcs_rac": {
|
|
3656
|
+
"type": "categories",
|
|
3657
|
+
"description": "`HRCS \u2013 Research Activity Codes <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
3658
|
+
"long_description": null,
|
|
3659
|
+
"is_entity": true,
|
|
3660
|
+
"is_filter": true,
|
|
3661
|
+
"is_facet": false,
|
|
3662
|
+
"is_multivalue": true,
|
|
3663
|
+
"solr_fields": { "return": "hrcs_rac_2020", "filter": "hrcs_rac_2020" }
|
|
3664
|
+
},
|
|
3665
|
+
"year": {
|
|
3666
|
+
"type": "integer",
|
|
3667
|
+
"description": "Year when the report was published (note: when the `date` field is available, this is equal to the year part of the full date).",
|
|
3668
|
+
"long_description": null,
|
|
3669
|
+
"is_entity": false,
|
|
3670
|
+
"is_filter": true,
|
|
3671
|
+
"is_facet": false,
|
|
3672
|
+
"is_multivalue": false,
|
|
3673
|
+
"solr_fields": { "return": "pub_year", "filter": "pub_year" }
|
|
3674
|
+
},
|
|
3675
|
+
"concepts": {
|
|
3676
|
+
"type": "json",
|
|
3677
|
+
"description": "Concepts describing the main topics of the report (note: automatically derived from the text using machine learning).",
|
|
3678
|
+
"long_description": null,
|
|
3679
|
+
"is_entity": false,
|
|
3680
|
+
"is_filter": true,
|
|
3681
|
+
"is_facet": false,
|
|
3682
|
+
"is_multivalue": false,
|
|
3683
|
+
"solr_fields": { "return": "terms_v6", "filter": "phrases_search_v6" }
|
|
3684
|
+
},
|
|
3685
|
+
"responsible_orgs_cities": {
|
|
3686
|
+
"type": "cities",
|
|
3687
|
+
"description": "Cities of the organisations responsible for the report, expressed as GeoNames ID and name.",
|
|
3688
|
+
"long_description": null,
|
|
3689
|
+
"is_entity": true,
|
|
3690
|
+
"is_filter": true,
|
|
3691
|
+
"is_facet": false,
|
|
3692
|
+
"is_multivalue": true,
|
|
3693
|
+
"solr_fields": {
|
|
3694
|
+
"return": "research_org_city_geonames_ids",
|
|
3695
|
+
"filter": "research_org_city_geonames_ids"
|
|
3696
|
+
}
|
|
3697
|
+
},
|
|
3698
|
+
"publisher_orgs_countries": {
|
|
3699
|
+
"type": "countries",
|
|
3700
|
+
"description": "Countries of the organizations publishing the report.",
|
|
3701
|
+
"long_description": null,
|
|
3702
|
+
"is_entity": true,
|
|
3703
|
+
"is_filter": true,
|
|
3704
|
+
"is_facet": false,
|
|
3705
|
+
"is_multivalue": true,
|
|
3706
|
+
"solr_fields": {
|
|
3707
|
+
"return": "publishing_org_country_codes",
|
|
3708
|
+
"filter": "publishing_org_country_codes"
|
|
3709
|
+
}
|
|
3710
|
+
},
|
|
3711
|
+
"category_rcdc": {
|
|
3712
|
+
"type": "categories",
|
|
3713
|
+
"description": "`Research, Condition, and Disease Categorization <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
3714
|
+
"long_description": null,
|
|
3715
|
+
"is_entity": true,
|
|
3716
|
+
"is_filter": true,
|
|
3717
|
+
"is_facet": false,
|
|
3718
|
+
"is_multivalue": true,
|
|
3719
|
+
"solr_fields": { "return": "rcdc_2023", "filter": "rcdc_2023" }
|
|
3720
|
+
},
|
|
3721
|
+
"category_bra": {
|
|
3722
|
+
"type": "categories",
|
|
3723
|
+
"description": "`Broad Research Areas <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
3724
|
+
"long_description": null,
|
|
3725
|
+
"is_entity": true,
|
|
3726
|
+
"is_filter": true,
|
|
3727
|
+
"is_facet": false,
|
|
3728
|
+
"is_multivalue": true,
|
|
3729
|
+
"solr_fields": { "return": "bra_2020", "filter": "bra_2020" }
|
|
3730
|
+
},
|
|
3731
|
+
"responsible_orgs_countries": {
|
|
3732
|
+
"type": "countries",
|
|
3733
|
+
"description": "Countries of the organisations responsible for the report, expressed as GeoNames code and name.",
|
|
3734
|
+
"long_description": null,
|
|
3735
|
+
"is_entity": true,
|
|
3736
|
+
"is_filter": true,
|
|
3737
|
+
"is_facet": false,
|
|
3738
|
+
"is_multivalue": true,
|
|
3739
|
+
"solr_fields": {
|
|
3740
|
+
"return": "research_org_country_codes",
|
|
3741
|
+
"filter": "research_org_country_codes"
|
|
3742
|
+
}
|
|
3743
|
+
},
|
|
3744
|
+
"category_for_2020": {
|
|
3745
|
+
"type": "categories",
|
|
3746
|
+
"description": "`ANZSRC Fields of Research classification <https://dimensions.freshdesk.com/support/solutions/articles/23000018820-what-are-fields-of-research-and-other-classification-systems-and-how-are-they-created->`_",
|
|
3747
|
+
"long_description": null,
|
|
3748
|
+
"is_entity": true,
|
|
3749
|
+
"is_filter": true,
|
|
3750
|
+
"is_facet": false,
|
|
3751
|
+
"is_multivalue": true,
|
|
3752
|
+
"solr_fields": { "return": "for_2020_2022", "filter": "for_2020_2022" }
|
|
3753
|
+
},
|
|
3754
|
+
"funder_details": {
|
|
3755
|
+
"type": "json",
|
|
3756
|
+
"description": "Sponsors/funders of the research/report, as they appear in the source.",
|
|
3757
|
+
"long_description": null,
|
|
3758
|
+
"is_entity": false,
|
|
3759
|
+
"is_filter": true,
|
|
3760
|
+
"is_facet": false,
|
|
3761
|
+
"is_multivalue": false,
|
|
3762
|
+
"solr_fields": { "return": "sponsor_orgs", "filter": "sponsor_orgs" }
|
|
3763
|
+
},
|
|
3764
|
+
"research_org_states": {
|
|
3765
|
+
"type": "states",
|
|
3766
|
+
"description": "States of the organisations associated with the report, expressed as GeoNames codes (ISO-3166-2).",
|
|
3767
|
+
"long_description": null,
|
|
3768
|
+
"is_entity": true,
|
|
3769
|
+
"is_filter": true,
|
|
3770
|
+
"is_facet": false,
|
|
3771
|
+
"is_multivalue": true,
|
|
3772
|
+
"solr_fields": {
|
|
3773
|
+
"return": "all_research_org_state_codes",
|
|
3774
|
+
"filter": "all_research_org_state_codes"
|
|
3775
|
+
}
|
|
3776
|
+
},
|
|
3777
|
+
"funder_orgs": {
|
|
3778
|
+
"type": "organizations",
|
|
3779
|
+
"description": "GRID organizations funding the report (only disambiguated).",
|
|
3780
|
+
"long_description": null,
|
|
3781
|
+
"is_entity": true,
|
|
3782
|
+
"is_filter": true,
|
|
3783
|
+
"is_facet": false,
|
|
3784
|
+
"is_multivalue": true,
|
|
3785
|
+
"solr_fields": { "return": "sponsor_org_ids", "filter": "sponsor_org_ids" }
|
|
3786
|
+
},
|
|
3787
|
+
"funder_orgs_countries": {
|
|
3788
|
+
"type": "countries",
|
|
3789
|
+
"description": "Countries of the organizations funding the report.",
|
|
3790
|
+
"long_description": null,
|
|
3791
|
+
"is_entity": true,
|
|
3792
|
+
"is_filter": true,
|
|
3793
|
+
"is_facet": false,
|
|
3794
|
+
"is_multivalue": true,
|
|
3795
|
+
"solr_fields": {
|
|
3796
|
+
"return": "sponsor_org_country_codes",
|
|
3797
|
+
"filter": "sponsor_org_country_codes"
|
|
3798
|
+
}
|
|
3799
|
+
}
|
|
3800
|
+
},
|
|
3801
|
+
"fieldsets": ["basics", "categories"],
|
|
3802
|
+
"metrics": { "count": { "name": "count", "description": "Total count" } },
|
|
3803
|
+
"search_fields": ["full_data", "title_abstract_only", "concepts"]
|
|
3804
|
+
}
|
|
3805
|
+
},
|
|
3806
|
+
"entities": {
|
|
3807
|
+
"categories": {
|
|
3808
|
+
"fields": {
|
|
3809
|
+
"id": {
|
|
3810
|
+
"name": "string",
|
|
3811
|
+
"type": "string",
|
|
3812
|
+
"description": "Dimensions ID of the category.",
|
|
3813
|
+
"long_description": null,
|
|
3814
|
+
"is_filter": true,
|
|
3815
|
+
"solr_fields": { "return": "uber_cat_id", "filter": "uber_cat_id" }
|
|
3816
|
+
},
|
|
3817
|
+
"name": {
|
|
3818
|
+
"name": "string",
|
|
3819
|
+
"type": "string",
|
|
3820
|
+
"description": "Name of the category. Note: this may include an identifier from the original source. E.g., '2.1 Biological and endogenous factors' (HRCS_RAC codes) or '1103 Clinical Sciences' (FOR codes).",
|
|
3821
|
+
"long_description": null,
|
|
3822
|
+
"is_filter": true,
|
|
3823
|
+
"solr_fields": { "return": "name", "filter": "name" }
|
|
3824
|
+
}
|
|
3825
|
+
},
|
|
3826
|
+
"fieldsets": ["basics"]
|
|
3827
|
+
},
|
|
3828
|
+
"cities": {
|
|
3829
|
+
"fields": {
|
|
3830
|
+
"id": {
|
|
3831
|
+
"name": "string",
|
|
3832
|
+
"type": "string",
|
|
3833
|
+
"description": "GeoNames city ID (eg '5391811' for `geonames:5391811 <http://www.geonames.org/5391811>`_ )",
|
|
3834
|
+
"long_description": null,
|
|
3835
|
+
"is_filter": true,
|
|
3836
|
+
"solr_fields": { "return": "geonames_id", "filter": "geonames_id" }
|
|
3837
|
+
},
|
|
3838
|
+
"name": {
|
|
3839
|
+
"name": "string",
|
|
3840
|
+
"type": "string",
|
|
3841
|
+
"description": "GeoNames city name.",
|
|
3842
|
+
"long_description": null,
|
|
3843
|
+
"is_filter": true,
|
|
3844
|
+
"solr_fields": { "return": "name", "filter": "name" }
|
|
3845
|
+
}
|
|
3846
|
+
},
|
|
3847
|
+
"fieldsets": ["basics"]
|
|
3848
|
+
},
|
|
3849
|
+
"countries": {
|
|
3850
|
+
"fields": {
|
|
3851
|
+
"id": {
|
|
3852
|
+
"name": "string",
|
|
3853
|
+
"type": "string",
|
|
3854
|
+
"description": "GeoNames country code (eg 'US' for `geonames:6252001 <http://www.geonames.org/6252001>`_ )",
|
|
3855
|
+
"long_description": null,
|
|
3856
|
+
"is_filter": true,
|
|
3857
|
+
"solr_fields": { "return": "code", "filter": "code" }
|
|
3858
|
+
},
|
|
3859
|
+
"name": {
|
|
3860
|
+
"name": "string",
|
|
3861
|
+
"type": "string",
|
|
3862
|
+
"description": "GeoNames country name.",
|
|
3863
|
+
"long_description": null,
|
|
3864
|
+
"is_filter": true,
|
|
3865
|
+
"solr_fields": { "return": "name", "filter": "name" }
|
|
3866
|
+
}
|
|
3867
|
+
},
|
|
3868
|
+
"fieldsets": ["basics"]
|
|
3869
|
+
},
|
|
3870
|
+
"journals": {
|
|
3871
|
+
"fields": {
|
|
3872
|
+
"id": {
|
|
3873
|
+
"name": "string",
|
|
3874
|
+
"type": "string",
|
|
3875
|
+
"description": "Dimensions ID of a journal. E.g., `jour.1016355 <https://app.dimensions.ai/discover/publication?and_facet_source_title=jour.1016355>`_ or `jour.1077219 <https://app.dimensions.ai/discover/publication?and_facet_source_title=jour.1077219>`_ .",
|
|
3876
|
+
"long_description": null,
|
|
3877
|
+
"is_filter": true,
|
|
3878
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
3879
|
+
},
|
|
3880
|
+
"title": {
|
|
3881
|
+
"name": "string",
|
|
3882
|
+
"type": "string",
|
|
3883
|
+
"description": "Title of a journal publication. E.g. 'Nature' or 'The Lancet'",
|
|
3884
|
+
"long_description": null,
|
|
3885
|
+
"is_filter": true,
|
|
3886
|
+
"solr_fields": { "return": "title", "filter": "title" }
|
|
3887
|
+
}
|
|
3888
|
+
},
|
|
3889
|
+
"fieldsets": ["basics"]
|
|
3890
|
+
},
|
|
3891
|
+
"states": {
|
|
3892
|
+
"fields": {
|
|
3893
|
+
"id": {
|
|
3894
|
+
"name": "string",
|
|
3895
|
+
"type": "string",
|
|
3896
|
+
"description": "GeoNames state code (ISO\u200c-3166-2). E.g., 'US.CA' for `geonames:5332921 <http://www.geonames.org/5332921>`_ .",
|
|
3897
|
+
"long_description": null,
|
|
3898
|
+
"is_filter": true,
|
|
3899
|
+
"solr_fields": { "return": "code", "filter": "code" }
|
|
3900
|
+
},
|
|
3901
|
+
"name": {
|
|
3902
|
+
"name": "string",
|
|
3903
|
+
"type": "string",
|
|
3904
|
+
"description": "GeoNames state name (ISO\u200c-3166-2).",
|
|
3905
|
+
"long_description": null,
|
|
3906
|
+
"is_filter": true,
|
|
3907
|
+
"solr_fields": { "return": "name", "filter": "name" }
|
|
3908
|
+
}
|
|
3909
|
+
},
|
|
3910
|
+
"fieldsets": ["basics"]
|
|
3911
|
+
},
|
|
3912
|
+
"publication_links": {
|
|
3913
|
+
"fields": {
|
|
3914
|
+
"id": {
|
|
3915
|
+
"name": "string",
|
|
3916
|
+
"type": "string",
|
|
3917
|
+
"description": "Dimensions publication id",
|
|
3918
|
+
"long_description": null,
|
|
3919
|
+
"is_filter": true,
|
|
3920
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
3921
|
+
},
|
|
3922
|
+
"doi": {
|
|
3923
|
+
"name": "string",
|
|
3924
|
+
"type": "string",
|
|
3925
|
+
"description": "Digital object identifier",
|
|
3926
|
+
"long_description": null,
|
|
3927
|
+
"is_filter": true,
|
|
3928
|
+
"solr_fields": { "return": "doi", "filter": "doi" }
|
|
3929
|
+
},
|
|
3930
|
+
"pmid": {
|
|
3931
|
+
"name": "string",
|
|
3932
|
+
"type": "string",
|
|
3933
|
+
"description": "PubMed ID",
|
|
3934
|
+
"long_description": null,
|
|
3935
|
+
"is_filter": true,
|
|
3936
|
+
"solr_fields": { "return": "pmid", "filter": "pmid" }
|
|
3937
|
+
},
|
|
3938
|
+
"pmcid": {
|
|
3939
|
+
"name": "string",
|
|
3940
|
+
"type": "string",
|
|
3941
|
+
"description": "PubMed Central ID",
|
|
3942
|
+
"long_description": null,
|
|
3943
|
+
"is_filter": true,
|
|
3944
|
+
"solr_fields": { "return": "pmc_id", "filter": "pmc_id" }
|
|
3945
|
+
}
|
|
3946
|
+
},
|
|
3947
|
+
"fieldsets": ["basics"]
|
|
3948
|
+
},
|
|
3949
|
+
"open_access": {
|
|
3950
|
+
"fields": {
|
|
3951
|
+
"id": {
|
|
3952
|
+
"name": "string",
|
|
3953
|
+
"type": "string",
|
|
3954
|
+
"description": "Dimensions ID of the open access category. E.g., one of 'closed', 'oa_all', 'gold_bronze', 'gold_pure', 'green_sub', 'gold_hybrid', 'green_pub', 'green_acc'. (see also the :ref:`publications` field ``open_access``).",
|
|
3955
|
+
"long_description": null,
|
|
3956
|
+
"is_filter": true,
|
|
3957
|
+
"solr_fields": { "return": "open_access_id", "filter": "open_access_id" }
|
|
3958
|
+
},
|
|
3959
|
+
"name": {
|
|
3960
|
+
"name": "string",
|
|
3961
|
+
"type": "string",
|
|
3962
|
+
"description": "Name of the open access category. E.g., 'Closed' or 'Pure Gold'.",
|
|
3963
|
+
"long_description": null,
|
|
3964
|
+
"is_filter": true,
|
|
3965
|
+
"solr_fields": { "return": "name", "filter": "name_search" }
|
|
3966
|
+
},
|
|
3967
|
+
"description": {
|
|
3968
|
+
"name": "string",
|
|
3969
|
+
"type": "string",
|
|
3970
|
+
"description": "Description of the open access category.",
|
|
3971
|
+
"long_description": null,
|
|
3972
|
+
"is_filter": false,
|
|
3973
|
+
"solr_fields": { "return": "description", "filter": "description" }
|
|
3974
|
+
}
|
|
3975
|
+
},
|
|
3976
|
+
"fieldsets": ["basics"]
|
|
3977
|
+
},
|
|
3978
|
+
"repositories": {
|
|
3979
|
+
"fields": {
|
|
3980
|
+
"id": {
|
|
3981
|
+
"name": "string",
|
|
3982
|
+
"type": "string",
|
|
3983
|
+
"description": "Dimensions ID of the repository.",
|
|
3984
|
+
"long_description": null,
|
|
3985
|
+
"is_filter": true,
|
|
3986
|
+
"solr_fields": { "return": "id", "filter": "id" }
|
|
3987
|
+
},
|
|
3988
|
+
"name": {
|
|
3989
|
+
"name": "string",
|
|
3990
|
+
"type": "string",
|
|
3991
|
+
"description": "The name of the repository of the dataset.",
|
|
3992
|
+
"long_description": null,
|
|
3993
|
+
"is_filter": true,
|
|
3994
|
+
"solr_fields": { "return": "name", "filter": "name" }
|
|
3995
|
+
}
|
|
3996
|
+
},
|
|
3997
|
+
"fieldsets": ["basics"]
|
|
3998
|
+
}
|
|
3999
|
+
}
|
|
4000
|
+
}
|