JFrog · Schema
JPD
ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| url | string | |
| location | object | |
| status | string | |
| services | array | |
| created | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/JPD",
"title": "JPD",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
},
"location": {
"type": "object",
"properties": {
"city_name": {
"type": "string"
},
"country_code": {
"type": "string"
},
"latitude": {
"type": "number"
},
"longitude": {
"type": "number"
}
}
},
"status": {
"type": "string",
"enum": [
"online",
"offline",
"unavailable"
]
},
"services": {
"type": "array",
"items": {
"type": "object",
"properties": {
"service_type": {
"type": "string"
},
"version": {
"type": "string"
},
"status": {
"type": "string"
}
}
}
},
"created": {
"type": "string",
"format": "date-time"
}
}
}