-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
996ed7f
commit f6ee55c
Showing
1 changed file
with
43 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,48 @@ | ||
{ | ||
"$schema": "http://json-schema.org/schema#", | ||
"$schemaVersion": "0.0.1", | ||
"modelTags": "", | ||
"$id": "https://smart-data-models.github.io/dataModels.CIMEnergyClasses/ResistancePerLength/schema.json", | ||
"title": " Smart Data Models - ResistancePerLength", | ||
"description": "Adapted from CIM data models. Resistance (real part of impedance) per unit of length.", | ||
"type": "object", | ||
"allOf": [ | ||
{ | ||
"$ref": "https://smart-data-models.github.io/data-models/common-schema.json#/definitions/GSMA-Commons" | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"$schemaVersion": "0.0.1", | ||
"modelTags": "", | ||
"$id": "https://smart-data-models.github.io/dataModels.CIMEnergyClasses/ResistancePerLength/schema.json", | ||
"title": " Smart Data Models - ResistancePerLength", | ||
"description": "Adapted from CIM data models. Resistance (real part of impedance) per unit of length.", | ||
"type": "object", | ||
"allOf": [ | ||
{ | ||
"$ref": "https://smart-data-models.github.io/data-models/common-schema.json#/definitions/GSMA-Commons" | ||
}, | ||
{ | ||
"$ref": "https://smart-data-models.github.io/data-models/common-schema.json#/definitions/Location-Commons" | ||
}, | ||
{ | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"ResistancePerLength" | ||
], | ||
"description": "Property. NGSI type. It has to be ResistancePerLength" | ||
}, | ||
{ | ||
"$ref": "https://smart-data-models.github.io/data-models/common-schema.json#/definitions/Location-Commons" | ||
"denominatorMultiplier": { | ||
"description": "Property. Model:'https://schema.org/Number'. Default: None", | ||
"type": "number" | ||
}, | ||
{ | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"ResistancePerLength" | ||
], | ||
"description": "Property. NGSI type. It has to be ResistancePerLength" | ||
}, | ||
"denominatorMultiplier": { | ||
"description": "Property. Model:'https://schema.org/Number'. Default: None", | ||
"type": "number" | ||
}, | ||
"denominatorUnit": { | ||
"description": "Property. Model:'https://schema.org/Number'. Default: None", | ||
"type": "number" | ||
}, | ||
"multiplier": { | ||
"description": "Property. Model:'https://schema.org/Number'. Default: None", | ||
"type": "number" | ||
}, | ||
"unit": { | ||
"description": "Property. Model:'https://schema.org/Number'. Default: None", | ||
"type": "number" | ||
}, | ||
"value": { | ||
"description": "Property. Model:'https://schema.org/Number'. Default: 0.0", | ||
"type": "number" | ||
} | ||
} | ||
"denominatorUnit": { | ||
"description": "Property. Model:'https://schema.org/Number'. Default: None", | ||
"type": "number" | ||
}, | ||
"multiplier": { | ||
"description": "Property. Model:'https://schema.org/Number'. Default: None", | ||
"type": "number" | ||
}, | ||
"unit": { | ||
"description": "Property. Model:'https://schema.org/Number'. Default: None", | ||
"type": "number" | ||
}, | ||
"value": { | ||
"description": "Property. Model:'https://schema.org/Number'. Default: 0.0", | ||
"type": "number" | ||
} | ||
] | ||
} | ||
} | ||
] | ||
} |