-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dependabot/pip/ci/dependabot-updates/pydan…
…tic-gte-1.10.0-and-lt-2.10.2
- Loading branch information
Showing
6 changed files
with
118 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# An invalid version of datamodel Valid1.yaml | ||
uri: http://onto-ns.com/meta/0.1/InvalidYaml2 | ||
description: A datamodel wiht invalid dimension (empty). | ||
dimensions: | ||
properties: | ||
name: | ||
type: str | ||
description: Name of the item. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"uri": "http://onto-ns.com/meta/0.2/Ref", | ||
"description": "A datamodel with ref-types...", | ||
"dimensions": { | ||
"nitems": "Number of items.", | ||
"nrefs": "Number of references to Ref datamodels." | ||
}, | ||
"properties": { | ||
"item": { | ||
"type": "ref", | ||
"ref": "http://onto-ns.com/meta/0.1/Item", | ||
"description": "Single item." | ||
}, | ||
"items": { | ||
"type": "ref", | ||
"$ref": "http://onto-ns.com/meta/0.1/Item", | ||
"shape": ["nitems"], | ||
"description": "List of items." | ||
}, | ||
"refs": { | ||
"type": "ref", | ||
"$ref": "http://onto-ns.com/meta/0.1/Ref", | ||
"shape": ["nrefs"], | ||
"description": "List of references to Ref datamodels. This may become very cyclic, but DLite should cope with it..." | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# An valid version of datamodel Invalid1.yaml | ||
uri: http://onto-ns.com/meta/0.1/ValidYaml1 | ||
description: An datamodel for an item with float type and invalid shape name. | ||
dimensions: [] | ||
properties: | ||
name: | ||
type: ref | ||
description: Name of the item. | ||
$ref: http://onto-ns.com/meta/0.1/InvalidYaml2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters