Removed mandatory directive on schema URI

This commit is contained in:
Luca Frosini 2020-12-21 23:06:51 +01:00
parent c0bc729541
commit 3a5ec4c710
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ public interface ValueSchema extends GCubeProperty, ValidatedTypedProperty<URI,S
* An URI containing a schema used to validate/interpret the content of the value.
* It is only an informative field. The validation is charge of the client.
*/
@ISProperty(description = "An URI containing a schema used to validate/interpret the content of the value. It is only an informative field. The validation is charge of the client.", mandatory=true, nullable=false)
@ISProperty(description = "An URI containing a schema used to validate/interpret the content of the value. It is only an informative field. The validation is charge of the client.") //, mandatory=true, nullable=false)
@Override
public URI getSchema();