addedInput schema / additionalProperties
Added value: +false
removedOutput schema / $defs
Removed value: -{
- "FilesystemInfo": {
- "description": "Individual filesystem entry from findmnt output.",
- "properties": {
- "avail": {
- "default": "",
- "type": "string"
- },
- "fstype": {
- "default": "",
- "type": "string"
- },
- "size": {
- "default": "",
- "type": "string"
- },
- "source": {
- "default": "",
- "type": "string"
- },
- "target": {
- "default": "",
- "type": "string"
- },
- "use%": {
- "default": "",
- "type": "string"
- },
- "used": {
- "default": "",
- "type": "string"
- }
- },
- "type": "object"
- }
-}
removedOutput schema / properties / filesystems / items / $ref
Removed value: -"#/$defs/FilesystemInfo"
addedOutput schema / properties / filesystems / items / description
Added value: +"Individual filesystem entry from findmnt output."
addedOutput schema / properties / filesystems / items / properties
Added value: +{
+ "avail": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": ""
+ },
+ "fstype": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": ""
+ },
+ "size": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": ""
+ },
+ "source": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": ""
+ },
+ "target": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": ""
+ },
+ "use%": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": ""
+ },
+ "used": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": ""
+ }
+}
addedOutput schema / properties / filesystems / items / type
Added value: +"object"