The most basic entity type in our domain. We require that there is a location open to enter violations, so that this information can be returned to the client.
| name | data type | type | namespace | min/max occurs | constraints | description |
|---|---|---|---|---|---|---|
| extension | string | element | 0/1 | |||
| fileBytes | base64Binary | element | 0/1 | |||
| filename | string | element | 0/1 | |||
| lineCount | int | element | 1/1 | required int | ||
| subDirectory | string | element | 0/1 | |||
Properties inherited from baseEntity |
||||||
| violations | list of simpleViolation | element | 0/unbounded | A list of constraint violations, if any, that this object has. | ||
Example
<fileInfo>
<fileBytes>...</fileBytes>
<filename>...</filename>
<subDirectory>...</subDirectory>
<lineCount>...</lineCount>
<extension>...</extension>
<violations>
<propertyName>...</propertyName>
<failureMessage>...</failureMessage>
<stackTrace>...</stackTrace>
</violations>
</fileInfo>