OARepo rdm records data model
Project description
OARepo documents
Instalation
pip install oarepo-documents
Usage
This library contains data model for creating documents. This data model is not usable by it self, you have to add it to your own data model as it is shown in "Using data model". New document can by also created by provided DOI, as it is shown in "Document from DOI"
Using data model
Document json schema, es mapping and marshmallow is taken from invenio-app-ils/documents with some properties changed to data type multilingual string from oarepo-multilingual library.
All properties that are changed to multilingual are listed in "Changes"
Changes
- abstract
- alternative_abstracts
- alternative_titles
- conference_info (only property "title")
- license (only property "title")
- note
- publication_info (only property "journal_title")
- title
- urls (only property "description")
Json Schema
Add documents json schema to your schema with keyword allOf and "$ref": "/schemas/document-v1.0.0.json#/definitions/Document"
Example
{
"type": "object",
"allOf": [
{
"properties": {
"extra_property": {
"type": "string"
}
}
},
{
"$ref": "/schemas/document-v1.0.0.json#/definitions/Document"
}
],
"additionalProperties": "false"
}
Mapping
Add documents mapping to your elastic search mapping with "oarepo:extends": "document-v1.0.0.json#/Document" from library "oarepo-extends""
Example
{
"mappings": {
"dynamic": "strict",
"oarepo:extends": "document-v1.0.0.json#/Document",
"properties": {
"extra_property": {
"type": "text"
}
}
}
}
Marshmallow
Inherit your class from DocumentSchemaV1
Example
from oarepo_documents.marshmallow.document import DocumentSchemaV1
class SampleSchemaV1(DocumentSchemaV1):
extra_property = fields.String(validate=validate.Length(min=5), required=False)
Document from DOI
You can create new document record from existing DOI with url in format 'server/record_class/document/doi'. This request will return existing document record, if document with that DOI already exists in your database. If there is no document with this DOI in database, it will be created a new one via CrossRef client and metadata from this new document will be returned. This new document will have its DOI as metadata in property "alternative_identifiers" with scheme "DOI".
Examples
url = "https://localhost:5000/records/document/10.5281/zenodo.3883620"
Changes
Version 1.0.0
- Initial public release.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file oarepo_documents-2.0.1.tar.gz.
File metadata
- Download URL: oarepo_documents-2.0.1.tar.gz
- Upload date:
- Size: 24.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6af4c6c84d963cc360f567d819b83cae7c44a84bde2461c3e74e31fc01656220
|
|
| MD5 |
0404c98a10d4b8a4a472b78d79e34a77
|
|
| BLAKE2b-256 |
25e0f5474457590a3bf4442608b537c87f17e86ad8fff21ccb512882cdc2307a
|
File details
Details for the file oarepo_documents-2.0.1-py3-none-any.whl.
File metadata
- Download URL: oarepo_documents-2.0.1-py3-none-any.whl
- Upload date:
- Size: 15.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a41a6c5983c6c60862a41a769b40dfa342de42d9049a414f88008b74a48342a0
|
|
| MD5 |
f22617a6b10fdf7551dc177bb7d00741
|
|
| BLAKE2b-256 |
fb8f1b843d77d57d56fc0397d930824276c10a829184cd5c7f684731a699470e
|