earthcube / earthcube/ResourceRegistry
change to potential action action type
- Dominant language
- No language data
- Stars
- 0
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
TODO, since I did not pull the repo
https://github.com/earthcube/ResourceRegistry/blob/baa4200457802fce87a5f7d25c24e7c25754b496/ecrrjsonschema1.0.json#L535
```
"httpMethod": {
"type": "array",
"items": [
{
"type": "string",
"default": "GET"
}
]
}
```
square brackets are not correct... needs to be object... add enums, too.
```
"httpMethod": {
"title": "HTTP Method",
"type": "array",
"items":
{
"type": "string",
"default": "GET",
"enum": ["GET","PUT","POST","PATCH","DELETE","COPY","HEAD","OPTIONS", "PROPFIND" ]
}
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.