-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Confusing schemas for themes
#235
Comments
@m-mohr yeah, the examples are not quite up to date relative to the schemas. I have it on my todo list to update and augment them. Need to do a general validation of all example relative to the current state of the schemas. |
@pvretano Thanks. The "good" schemas itself also have an issue, I think. Neither In the STAC extension I made the schema a bit more strict in general (doesn't need to get adopted to Records, just fyi): {
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"required": [
"concepts",
"scheme"
],
"properties": {
"concepts": {
"type": "array",
"items": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"title": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string",
"minLength": 1
},
"url": {
"type": "string",
"format": "uri"
}
}
}
},
"scheme": {
"type": "string",
"minLength": 1
}
}
}
} |
@m-mohr I'll have to check with the author of that schema about why |
Great, the requirements are fixed. Now it's just open to clean-up some older files, right?
|
@tomkralidis Thanks, but I don't see any changes in #236 to the two files mentioned in #235 (comment) ?! |
Oh, I guess that's a typo and meant #246 :-) |
Oops mea culpa, yes #246 :) |
Resolved by PR #246 ... closing. Create a new issue or re-open this one if something comes up. |
I just searched for information about
themes
and found various schemas and examples, which was a bit confusing:Maybe check the following files whether they are up-to-date:
These look consistent:
The text was updated successfully, but these errors were encountered: