Other
            LicenseOther
    Pre-defined licenses that are available in DSP. If the user is free to choose a license, we recommend to choose from our recommended licenses.
- Public: See- Publicfor details.
- Various: See- Variousfor details.
Examples:
# adding a BORIS Standard License to a file
resource = resource.add_file(
    filename="images/cat.jpg",
    license=xmllib.LicenseOther.Various.BORIS_STANDARD,
    copyright_holder="Meow University",
    authorship=["Kitty Meow"],
)
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/licenses/other.py
                | 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |  | 
            Public
    
              Bases: License
Pre-defined public domain licenses. See the API documentation for details about the licenses.
- CC_0_1_0: CC0 1.0 Universal
- CC_PDM_1_0: Public Domain Mark 1.0 Universal
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/licenses/other.py
                | 30 31 32 33 34 35 36 37 38 39 40 |  | 
            Various
    
              Bases: License
A collection of various, pre-defined licenses. See the API documentation for details about the licenses.
- BORIS_STANDARD: BORIS Standard License
- FRANCE_OUVERTE: LICENCE OUVERTE 2.0
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/licenses/other.py
                | 43 44 45 46 47 48 49 50 51 52 53 |  |