@magda/registry-aspects
Version:
Common aspects for use with the registry.
18 lines (17 loc) • 456 B
JSON
{
"$schema": "http://json-schema.org/schema#",
"title": "Source Link Status Aspect",
"description": "Aspect describing source link status of a distribution (active or broken)",
"type": "object",
"properties": {
"status": {
"enum": ["active", "broken", "unknown"]
},
"httpStatusCode": {
"type": "integer"
},
"errorDetails": {
"type": "string"
}
}
}