Skip to content

Commit

Permalink
Publish JSON Schemas [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
STAC CI committed Jul 17, 2024
1 parent 4edea37 commit 96db975
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion dev/item-spec/json-schema/item.json
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,33 @@
"title": {
"title": "Link title",
"type": "string"
},
"method": {
"title": "Link method",
"type": "string",
"pattern": "^[A-Z]+$",
"default": "GET"
},
"headers": {
"title": "Link headers",
"type": "object",
"additionalProperties": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
},
"body": {
"title": "Link body",
"$comment": "Any type is allowed."
}
},
"$comment": "Link with relationship `self` must be absolute URI",
Expand Down Expand Up @@ -275,4 +302,4 @@
]
}
}
}
}

0 comments on commit 96db975

Please sign in to comment.