-
Notifications
You must be signed in to change notification settings - Fork 12
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
Description domain #49
Comments
pipeline_steps.step_numberThe base_type and schema define pipeline_steps.prerequisite.uri.{access,address}Does required/regex refer to The base_type and schema define The base_type and schema reference a The pipeline_steps.{input_list,output_list}The base_type and schema reference a |
pipeline_steps.step_number is an integer in the schema but the spec text has it as a string apply #49
As JSON Schema specifically defines Suggestions? |
@HadleyKing I am not aware of any potential for a name conflict between a BCO file and the JSON Schema that describes its constraints. In regards to the BCO, I can imagine replacing "prerequisites": [{
"filename": "<STRING>",
"uri": "<URI>",
"sha256": "<SHA256>",
"date_accessed": "<ISO8601>"
}] |
Would it make sense to replace this definition: with something like the following? "uri": {
"type": "object",
"additionalProperties": false,
"required": [
"uri"
],
"properties": {
"filename":{
"type": "string"
},
"uri": {
"type": "string",
"format": "uri"
},
"access_time": {
"type": "string",
"format": "date-time"
},
"sha1_chksum": {
"type": "string",
"description": "Sha256 hash function that produces a message digest",
"pattern": "[A-Za-z0-9]+"
}
}
} |
@HadleyKing the definition looks valid. Sha256 will need to be removed from the description. |
bf4fb16 Fixed this issue |
Issues from description_domain.md
regex for datetime but this mayebe already validated in first level
schema says it is required, spec text should say the same thing
should is redundant property (pipeline_steps should be flat list of
step objects)
is an integer in the schema but the spec text has it as a string
regex required
regex for url values of these arrays
The text was updated successfully, but these errors were encountered: